Package com.emc.vipr.model.sys.licensing

Examples of com.emc.vipr.model.sys.licensing.License


     * API Call: POST /license
     *
     * @param licenseText The text for the license file to upload.
     */
    public void set(String licenseText) {
        License license = new License();
        license.setLicenseText(licenseText);
      client.post(String.class, license, LICENSE_URL);
    }
View Full Code Here

TOP

Related Classes of com.emc.vipr.model.sys.licensing.License

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.