Commits local changes to SAP Mobile Server. The returned ConfigurationValidationStatus contains the validation status of the delivered security configuration on the SAP Mobile Server.
ConfigurationValidationStatus commit() throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
ConfigurationValidationStatus cvs = supServerConf.commit();
if(cvs.isValid()){
//succeed.
}
else{
//fail.
}