Examples of SystemConfigRestRep


Examples of com.emc.vipr.model.object.namespace.SystemConfigRestRep

     *
     * API Call: PUT /config/user-scope/{scope}
     */
  public SystemConfigRestRep setUserScopeSystemConfiguration(String scope)
  {
    SystemConfigRestRep response = client.put(SystemConfigRestRep.class, CONFIG_URL + USER_SCOPE_URL + USER_SCOPE, new Object[] {scope});
    return response;
  }
View Full Code Here

Examples of com.emc.vipr.model.object.namespace.SystemConfigRestRep

   * API Call: GET /config/user-scope
   *
   */
  public SystemConfigRestRep getUserScopeSystemConfiguration()
  {
    SystemConfigRestRep response = client.get(SystemConfigRestRep.class, CONFIG_URL + USER_SCOPE_URL);
    return response;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.