Package com.openshift.internal.client.response

Examples of com.openshift.internal.client.response.KeyResourceDTO


  public void setKeyType(SSHKeyType type, String publicKey) throws OpenShiftException {
    Assert.notNull(type);
    Assert.notNull(publicKey);

    KeyResourceDTO dto = new UpdateKeyRequest().execute(type, publicKey);
    update(dto);
  }
View Full Code Here


  }

  public void setPublicKey(String publicKey) throws OpenShiftException {
    Assert.notNull(publicKey);

    KeyResourceDTO dto = new UpdateKeyRequest().execute(getKeyType(), publicKey);
    update(dto);
  }
View Full Code Here

TOP

Related Classes of com.openshift.internal.client.response.KeyResourceDTO

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.