Package com.emc.vipr.model.object.namespace

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


   * 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

Related Classes of com.emc.vipr.model.object.namespace.SystemConfigRestRep

Copyright © 2018 www.massapicom. 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.