Package com.netscape.cmscore.request
Class RequestIAttrSetWrapper
- java.lang.Object
-
- com.netscape.cmscore.request.RequestIAttrSetWrapper
-
- All Implemented Interfaces:
IAttrSet,java.io.Serializable
public class RequestIAttrSetWrapper extends java.lang.Object implements IAttrSet
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RequestIAttrSetWrapper(IRequest request)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddelete(java.lang.String name)Deletes an attribute value from this AttrSet.java.lang.Objectget(java.lang.String name)Gets an attribute value.java.util.Enumeration<java.lang.String>getElements()Returns an enumeration of the names of the attributes existing within this AttrSet.voidset(java.lang.String name, java.lang.Object obj)Sets an attribute value within this AttrSet.
-
-
-
Constructor Detail
-
RequestIAttrSetWrapper
public RequestIAttrSetWrapper(IRequest request)
-
-
Method Detail
-
set
public void set(java.lang.String name, java.lang.Object obj) throws EBaseExceptionDescription copied from interface:IAttrSetSets an attribute value within this AttrSet.- Specified by:
setin interfaceIAttrSet- Parameters:
name- the name of the attributeobj- the attribute object.- Throws:
EBaseException- on attribute handling errors.
-
get
public java.lang.Object get(java.lang.String name) throws EBaseExceptionDescription copied from interface:IAttrSetGets an attribute value.- Specified by:
getin interfaceIAttrSet- Parameters:
name- the name of the attribute to return.- Throws:
EBaseException- on attribute handling errors.
-
delete
public void delete(java.lang.String name) throws EBaseExceptionDescription copied from interface:IAttrSetDeletes an attribute value from this AttrSet.- Specified by:
deletein interfaceIAttrSet- Parameters:
name- the name of the attribute to delete.- Throws:
EBaseException- on attribute handling errors.
-
getElements
public java.util.Enumeration<java.lang.String> getElements()
Description copied from interface:IAttrSetReturns an enumeration of the names of the attributes existing within this AttrSet.- Specified by:
getElementsin interfaceIAttrSet- Returns:
- an enumeration of the attribute names.
-
-