Commit Local Changes to Unwired Server

Commits local changes to the Unwired Server. The returned ConfigurationValidationStatus contains the validation status of the delivered 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

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