Commit Local Changes to SAP Mobile Server

Commits local changes to the SAP Mobile Server. The returned ConfigurationValidationStatus contains the validation status of the security configuration on the SAP Mobile 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.
    }