Commit Local Changes to the Unwired Server

Commits local changes to the Unwired Server. The returned ConfigurationValidationStatus contains the validation status of the security configuration on the Unwired Server.

Syntax

ConfigurationValidationStatus commit() throws SUPAdminException;

Returns

If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.

Examples

  • Commit local changes
    ConfigurationValidationStatus cvs = supServerConf.commit();
    if(cvs.isValid()){
    	//succeed.
    }
    else{
    	//fail.
    }