com.emc.storageos.model.password.SSHKeyUpdateParam Maven / Gradle / Ivy
/*
* Copyright (c) 2014 EMC Corporation
* All Rights Reserved
*/
package com.emc.storageos.model.password;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement(name = "ssh_key_update")
public class SSHKeyUpdateParam {
private String sshKey;
@XmlElement(name = "ssh_key")
public String getSshKey() {
return sshKey;
}
public void setSshKey(String sshKey) {
this.sshKey = sshKey;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy