Package com.netscape.cms.profile.common
Class ProfileOutput
- java.lang.Object
-
- com.netscape.cms.profile.common.ProfileOutput
-
- All Implemented Interfaces:
IConfigTemplate
- Direct Known Subclasses:
EnrollOutput
public abstract class ProfileOutput extends java.lang.Object implements IConfigTemplate
This interface represents a output policy which provides information on how to build the result page for the enrollment.- Version:
- $Revision$, $Date$
-
-
Constructor Summary
Constructors Constructor Description ProfileOutput()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract IConfigStoregetConfigStore()Retrieves configuration store.abstract java.lang.StringgetName(java.util.Locale locale)Retrieves the localizable name of this policy.abstract java.lang.StringgetText(java.util.Locale locale)Retrieves the localizable description of this policy.abstract java.lang.StringgetValue(java.lang.String name, java.util.Locale locale, IRequest request)Retrieves the value of the given value parameter by name.abstract IDescriptorgetValueDescriptor(java.util.Locale locale, java.lang.String name)Retrieves the descriptor of the given value parameter by name.abstract java.util.Enumeration<java.lang.String>getValueNames()Retrieves a list of names of the value parameter.abstract voidinit(IConfigStore config)Initializes this default policy.abstract voidpopulate(java.util.Map<java.lang.String,java.lang.String> ctx, IRequest request)Populates the request with this policy default.abstract voidsetValue(java.lang.String name, java.util.Locale locale, IRequest request, java.lang.String value)Sets the value of the given value parameter by name.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.netscape.certsrv.property.IConfigTemplate
getConfig, getConfigDescriptor, getConfigNames, setConfig
-
-
-
-
Method Detail
-
init
public abstract void init(IConfigStore config) throws EProfileException
Initializes this default policy.- Parameters:
config- configuration store- Throws:
EProfileException- failed to initialize
-
getConfigStore
public abstract IConfigStore getConfigStore()
Retrieves configuration store.- Returns:
- configuration store
-
populate
public abstract void populate(java.util.Map<java.lang.String,java.lang.String> ctx, IRequest request) throws EProfileExceptionPopulates the request with this policy default.- Parameters:
ctx- profile contextrequest- request- Throws:
EProfileException- failed to populate
-
getName
public abstract java.lang.String getName(java.util.Locale locale)
Retrieves the localizable name of this policy.- Parameters:
locale- user locale- Returns:
- output policy name
-
getText
public abstract java.lang.String getText(java.util.Locale locale)
Retrieves the localizable description of this policy.- Parameters:
locale- user locale- Returns:
- output policy description
-
getValueNames
public abstract java.util.Enumeration<java.lang.String> getValueNames()
Retrieves a list of names of the value parameter.- Returns:
- a list of property names
-
getValueDescriptor
public abstract IDescriptor getValueDescriptor(java.util.Locale locale, java.lang.String name)
Retrieves the descriptor of the given value parameter by name.- Parameters:
locale- user localename- property name- Returns:
- property descriptor
-
getValue
public abstract java.lang.String getValue(java.lang.String name, java.util.Locale locale, IRequest request) throws EProfileExceptionRetrieves the value of the given value parameter by name.- Parameters:
name- property namelocale- user localerequest- request- Returns:
- property value
- Throws:
EProfileException- failed to retrieve value
-
setValue
public abstract void setValue(java.lang.String name, java.util.Locale locale, IRequest request, java.lang.String value) throws EPropertyExceptionSets the value of the given value parameter by name.- Parameters:
name- property namelocale- user localerequest- requestvalue- property value- Throws:
EPropertyException
-
-