1 23 24 package org.infoglue.cms.entities.management; 25 26 import java.util.Collection ; 27 28 import org.infoglue.cms.entities.kernel.IBaseEntity; 29 30 public interface AccessRight extends IBaseEntity 31 { 32 public Integer getId(); 33 34 public AccessRightVO getValueObject(); 35 36 public void setValueObject(AccessRightVO valueObject); 37 38 public java.lang.Integer getAccessRightId(); 39 40 public void setAccessRightId(java.lang.Integer accessRightId); 41 42 public java.lang.String getName(); 43 44 public java.lang.String getParameters(); 45 46 public void setName(java.lang.String name); 47 48 public void setParameters(java.lang.String parameters); 49 50 public InterceptionPoint getInterceptionPoint(); 51 52 public void setInterceptionPoint(InterceptionPoint interceptionPoint); 53 54 public void setRoles(Collection roles); 55 56 public Collection getRoles(); 57 58 public void setGroups(Collection groups); 59 60 public Collection getUsers(); 61 62 public void setUsers(Collection users); 63 64 public Collection getGroups(); 65 } 66 | Popular Tags |