Package com.netscape.certsrv.profile
Interface IProfileContext
-
- All Known Implementing Classes:
ProfileContext
public interface IProfileContext
This interface represents a profile context which stores system-wide and user-provided information for assisting request creation.- Version:
- $Revision$, $Date$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
get(java.lang.String name)
Retrieves a value from the context.void
set(java.lang.String name, java.lang.String value)
Sets a value into the context.
-
-
-
Method Detail
-
set
void set(java.lang.String name, java.lang.String value)
Sets a value into the context.- Parameters:
name
- property namevalue
- property value
-
get
java.lang.String get(java.lang.String name)
Retrieves a value from the context.- Parameters:
name
- property name- Returns:
- property value
-
-