Package com.sap.portal.admin.wizard.validators

Deprecated.

See:
          Description

Interface Summary
IValidator Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com).
 

Class Summary
ObjectIdValidator Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com).
 

Package com.sap.portal.admin.wizard.validators Description

Deprecated. Use Admin Studio Wizard Framework, as described in Creating Administration Interfaces (Web Dynpro) on the Help Portal documentation (help.sap.com).

Provides interfaces and classes to validate wizard elements and properties.

Used to validate any data property that is stored in the wizard data model by a user interface pane.

Example for writing a validator:

public Class MyValidator implements IValidator {
    private LinkedList _errKeyList = new LinkedList();

    public boolean isValid(Object key, IWizardContext context) {
        String myData = (String) context.getProperty((String) key);
                // Perform validation here ...
        }

        public List getErrorKeyList(IWizardContext context) {
            return _errKeyList;
        }
} 

Since:
EP 6.0 SP10


Copyright 2011 SAP AG Complete Copyright Notice