Package com.sun.identity.log.service
Class Parameters
- java.lang.Object
-
- com.sun.identity.log.service.Parameters
-
- All Implemented Interfaces:
ParseOutput
public class Parameters extends Object implements ParseOutput
This class implementsParseOutput
interface and parsing log parameters. This class is registered with the SAX parser.
-
-
Field Summary
Fields Modifier and Type Field Description String
name
String variable to keep request nameObject[]
parameters
Object array to keep parameters
-
Constructor Summary
Constructors Constructor Description Parameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
process(String name, Vector elems, Hashtable atts, String pcdata)
The method that implements the ParseOutput interface.
-
-
-
Method Detail
-
process
public void process(String name, Vector elems, Hashtable atts, String pcdata)
The method that implements the ParseOutput interface. This is called by the SAX parser.- Specified by:
process
in interfaceParseOutput
- Parameters:
name
- name of requestelems
- vaector has parsing elementsatts
- parsing attributespcdata
- given data to be parsed.
-
-