FileDocCategorySizeDatePackage
PEClientPluggableFeatureImpl.javaAPI DocGlassfish v2 API3230Fri May 04 22:24:30 BST 2007com.sun.enterprise.admin.pluggable

PEClientPluggableFeatureImpl

public class PEClientPluggableFeatureImpl extends Properties
Properties that define implementation classes for pluggable features used asadmin specific to PE (platform edition) version of the product . An instance of this class should be passed to getInstance() method of ClientPluggableFeatureFactoryImpl to create and have access to pluggable features.

Fields Summary
private static Properties
featureImplClasses
Properties to keep feature name and implementation classes.
Constructors Summary
public PEClientPluggableFeatureImpl()
Default constructor.

        Properties props = new Properties();
        props.setProperty(
            Utils.getNQClassName(DomainsManager.class),
            "com.sun.enterprise.admin.servermgmt.pe.PEDomainsManager");
        props.setProperty(
            Utils.getNQClassName(DiagnosticAgent.class),
            "com.sun.enterprise.diagnostics.PEDiagnosticAgent");
        featureImplClasses = props;
    
        super(featureImplClasses);
    
Methods Summary