Package com.saperion.intf
Interface SaAcl
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
SaAclImpl
public interface SaAcl extends java.io.SerializableThis interface represents Access Control Lists in a Saperion system.- Author:
- jsc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDescription()This method gets the description of the acl.java.lang.StringgetName()This method gets the name of the acl.voidsetDescription(java.lang.String description)This method sets the description of the acl.voidsetName(java.lang.String name)This method sets the name of the acl.
-
-
-
Method Detail
-
getName
java.lang.String getName()
This method gets the name of the acl.- Returns:
- The name of the acl.
-
setName
void setName(java.lang.String name)
This method sets the name of the acl.- Parameters:
name- The name of the acl.
-
getDescription
java.lang.String getDescription()
This method gets the description of the acl.- Returns:
- The description of the acl.
-
setDescription
void setDescription(java.lang.String description)
This method sets the description of the acl.- Parameters:
description- The description of the acl.
-
-