Package com.emc.storageos.model.password

Examples of com.emc.storageos.model.password.SSHKeyUpdateParam


   *
   * @param sshKey the SSH key
   * @throws Exception
   */
  public void updateAuthorizedKey2(String sshKey) throws Exception {
        SSHKeyUpdateParam key = new SSHKeyUpdateParam();
        key.setSshKey(sshKey);
        client.put(String.class, key, UPDATE_AUTH_KEY_URL);
  }
View Full Code Here

TOP

Related Classes of com.emc.storageos.model.password.SSHKeyUpdateParam

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.