package com.thesecretserver.service; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for SSHCredentialsResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SSHCredentialsResult"> * <complexContent> * <extension base="{urn:thesecretserver.com}WebServiceResult"> * <sequence> * <element name="Username" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Host" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Port" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SSHCredentialsResult", propOrder = { "username", "password", "host", "port" }) public class SSHCredentialsResult extends WebServiceResult { @XmlElement(name = "Username") protected String username; @XmlElement(name = "Password") protected String password; @XmlElement(name = "Host") protected String host; @XmlElement(name = "Port") protected String port; /** * Gets the value of the username property. * * @return * possible object is * {@link String } * */ public String getUsername() { return username; } /** * Sets the value of the username property. * * @param value * allowed object is * {@link String } * */ public void setUsername(String value) { this.username = value; } /** * Gets the value of the password property. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = value; } /** * Gets the value of the host property. * * @return * possible object is * {@link String } * */ public String getHost() { return host; } /** * Sets the value of the host property. * * @param value * allowed object is * {@link String } * */ public void setHost(String value) { this.host = value; } /** * Gets the value of the port property. * * @return * possible object is * {@link String } * */ public String getPort() { return port; } /** * Sets the value of the port property. * * @param value * allowed object is * {@link String } * */ public void setPort(String value) { this.port = value; } }