
org.caiguoqing.uyuni.config.ProtocolConfig Maven / Gradle / Ivy
The newest version!
/**
*
*/
package org.caiguoqing.uyuni.config;
/**
* @author caiguoqing0427
*
*/
public class ProtocolConfig extends Config {
private String name;
private String port;
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the port
*/
public String getPort() {
return port;
}
/**
* @param port the port to set
*/
public void setPort(String port) {
this.port = port;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return "ProtocolConfig [name=" + name + ", port=" + port + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy