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
_rcsid
protected java.lang.String
description
protected boolean
isNew
protected java.lang.String
name
-
Constructor Summary
Constructors Constructor Description AuthorityGroup()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorityGroup
duplicate()
Clone this object.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.
-
-
-
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:
setIsNew
in interfaceIAuthorityGroup
- Parameters:
isnew
- true if this is a new instance.
-
getIsNew
public boolean getIsNew()
Get 'isnew' condition.- Specified by:
getIsNew
in interfaceIAuthorityGroup
- Returns:
- true if this is a new connection, false otherwise.
-
setName
public void setName(java.lang.String name)
Set name.- Specified by:
setName
in interfaceIAuthorityGroup
- Parameters:
name
- is the name.
-
getName
public java.lang.String getName()
Get name.- Specified by:
getName
in interfaceIAuthorityGroup
- Returns:
- the name
-
setDescription
public void setDescription(java.lang.String description)
Set description.- Specified by:
setDescription
in interfaceIAuthorityGroup
- Parameters:
description
- is the description.
-
getDescription
public java.lang.String getDescription()
Get description.- Specified by:
getDescription
in interfaceIAuthorityGroup
- Returns:
- the description
-
-