Interface IAuthorityGroup
-
- All Known Implementing Classes:
AuthorityGroup
public interface IAuthorityGroup
This 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.String
getDescription()
Get description.boolean
getIsNew()
Get 'isnew' condition.java.lang.String
getName()
Get name.void
setDescription(java.lang.String description)
Set description.void
setIsNew(boolean isnew)
Set 'isnew' condition.void
setName(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
-
-