1 53 54 package com.Yasna.forum; 55 56 import java.util.Iterator ; 57 import java.util.Date ; 58 59 public interface ForumGroup { 60 61 66 public int getID(); 67 68 73 public String getName(); 74 75 81 public void setName(String name) throws UnauthorizedException; 82 83 88 public String getDescription(); 89 90 94 public int getOrder(); 95 96 100 public void setOrder(int param) throws UnauthorizedException; 101 107 public void setDescription(String description) throws UnauthorizedException; 108 109 114 public Date getCreationDate(); 115 116 122 public void setCreationDate(Date creationDate) throws UnauthorizedException; 123 124 129 public Date getModifiedDate(); 130 131 137 public void setModifiedDate(Date modifiedDate) throws UnauthorizedException; 138 139 142 public Iterator forums(); 143 144 } 145 | Popular Tags |