Class AuthorityGroup
- java.lang.Object
-
- org.apache.manifoldcf.authorities.authgroups.AuthorityGroup
-
- All Implemented Interfaces:
IAuthorityGroup
public class AuthorityGroup extends java.lang.Object implements IAuthorityGroup
This is the implementation of the authority group interface, which describes a paper object to be manipulated in order to create, edit, or save an authority group definition.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String_rcsidprotected java.lang.Stringdescriptionprotected booleanisNewprotected java.lang.Stringname
-
Constructor Summary
Constructors Constructor Description AuthorityGroup()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorityGroupduplicate()Clone this object.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.
-
-
-
Field Detail
-
_rcsid
public static final java.lang.String _rcsid
- See Also:
- Constant Field Values
-
isNew
protected boolean isNew
-
name
protected java.lang.String name
-
description
protected java.lang.String description
-
-
Method Detail
-
duplicate
public AuthorityGroup duplicate()
Clone this object.- Returns:
- the cloned object.
-
setIsNew
public void setIsNew(boolean isnew)
Set 'isnew' condition.- Specified by:
setIsNewin interfaceIAuthorityGroup- Parameters:
isnew- true if this is a new instance.
-
getIsNew
public boolean getIsNew()
Get 'isnew' condition.- Specified by:
getIsNewin interfaceIAuthorityGroup- Returns:
- true if this is a new connection, false otherwise.
-
setName
public void setName(java.lang.String name)
Set name.- Specified by:
setNamein interfaceIAuthorityGroup- Parameters:
name- is the name.
-
getName
public java.lang.String getName()
Get name.- Specified by:
getNamein interfaceIAuthorityGroup- Returns:
- the name
-
setDescription
public void setDescription(java.lang.String description)
Set description.- Specified by:
setDescriptionin interfaceIAuthorityGroup- Parameters:
description- is the description.
-
getDescription
public java.lang.String getDescription()
Get description.- Specified by:
getDescriptionin interfaceIAuthorityGroup- Returns:
- the description
-
-