You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
594 B
40 lines
594 B
package com.zc.websocket.bo;
|
|
|
|
/**
|
|
* @author Athena-xiepufeng
|
|
*/
|
|
public class ChannelPropertyCommon
|
|
{
|
|
private int port;
|
|
|
|
private String path;
|
|
|
|
private String password;
|
|
|
|
public int getPort() {
|
|
return port;
|
|
}
|
|
|
|
public void setPort(int port) {
|
|
this.port = port;
|
|
}
|
|
|
|
public String getPath() {
|
|
return path;
|
|
}
|
|
|
|
public void setPath(String path) {
|
|
this.path = path;
|
|
}
|
|
|
|
public String getPassword() {
|
|
return password;
|
|
}
|
|
|
|
public void setPassword(String password) {
|
|
this.password = password;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|