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 void
delete(java.lang.String name)
Deletes an attribute value from this AttrSet.java.lang.Object
get(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.void
set(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 EBaseException
Description copied from interface:IAttrSet
Sets an attribute value within this AttrSet.- Specified by:
set
in 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 EBaseException
Description copied from interface:IAttrSet
Gets an attribute value.- Specified by:
get
in 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 EBaseException
Description copied from interface:IAttrSet
Deletes an attribute value from this AttrSet.- Specified by:
delete
in 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:IAttrSet
Returns an enumeration of the names of the attributes existing within this AttrSet.- Specified by:
getElements
in interfaceIAttrSet
- Returns:
- an enumeration of the attribute names.
-
-