1 17 package com.sun.syndication.feed.module; 18 19 import java.util.Date ; 20 21 28 public interface SyModule extends Module { 29 30 34 String URI = "http://purl.org/rss/1.0/modules/syndication/"; 35 36 String HOURLY = new String ("hourly"); 37 String DAILY = new String ("daily"); 38 String WEEKLY = new String ("weekly"); 39 String MONTHLY = new String ("monthly"); 40 String YEARLY = new String ("yearly"); 41 42 48 String getUpdatePeriod(); 49 50 56 void setUpdatePeriod(String updatePeriod); 57 58 64 int getUpdateFrequency(); 65 66 72 void setUpdateFrequency(int updateFrequency); 73 74 80 Date getUpdateBase(); 81 82 88 void setUpdateBase(Date updateBase); 89 90 } 91 | Popular Tags |