Skip navigation links
SAP NetWeaver 7.50 Enterprise Portal (SP 22)

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

Deprecated.

See: Description

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
SAP NetWeaver 7.50 Enterprise Portal (SP 22)

Copyright 2021 SAP SE Complete Copyright Notice