Class RequestIAttrSetWrapper

java.lang.Object
com.netscape.cmscore.request.RequestIAttrSetWrapper
All Implemented Interfaces:
IAttrSet, Serializable

public class RequestIAttrSetWrapper extends Object implements IAttrSet
See Also:
  • Constructor Details

    • RequestIAttrSetWrapper

      public RequestIAttrSetWrapper(Request request)
  • Method Details

    • set

      public void set(String name, Object obj) throws EBaseException
      Description copied from interface: IAttrSet
      Sets an attribute value within this AttrSet.
      Specified by:
      set in interface IAttrSet
      Parameters:
      name - the name of the attribute
      obj - the attribute object.
      Throws:
      EBaseException - on attribute handling errors.
    • get

      public Object get(String name) throws EBaseException
      Description copied from interface: IAttrSet
      Gets an attribute value.
      Specified by:
      get in interface IAttrSet
      Parameters:
      name - the name of the attribute to return.
      Throws:
      EBaseException - on attribute handling errors.
    • delete

      public void delete(String name) throws EBaseException
      Description copied from interface: IAttrSet
      Deletes an attribute value from this AttrSet.
      Specified by:
      delete in interface IAttrSet
      Parameters:
      name - the name of the attribute to delete.
      Throws:
      EBaseException - on attribute handling errors.
    • getElements

      public Enumeration<String> getElements()
      Description copied from interface: IAttrSet
      Returns an enumeration of the names of the attributes existing within this AttrSet.
      Specified by:
      getElements in interface IAttrSet
      Returns:
      an enumeration of the attribute names.