Interface IAuthorityGroup
-
- All Known Implementing Classes:
AuthorityGroup
public interface IAuthorityGroupThis interface describes a paper object which is an authority group.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()Get description.booleangetIsNew()Get 'isnew' condition.java.lang.StringgetName()Get name.voidsetDescription(java.lang.String description)Set description.voidsetIsNew(boolean isnew)Set 'isnew' condition.voidsetName(java.lang.String name)Set name.
-
-
-
Method Detail
-
setIsNew
void setIsNew(boolean isnew)
Set 'isnew' condition.- Parameters:
isnew- true if this is a new instance.
-
getIsNew
boolean getIsNew()
Get 'isnew' condition.- Returns:
- true if this is a new connection, false otherwise.
-
setName
void setName(java.lang.String name)
Set name.- Parameters:
name- is the name.
-
getName
java.lang.String getName()
Get name.- Returns:
- the name
-
setDescription
void setDescription(java.lang.String description)
Set description.- Parameters:
description- is the description.
-
getDescription
java.lang.String getDescription()
Get description.- Returns:
- the description
-
-