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.
27 lines
386 B
27 lines
386 B
package com.platform.test;
|
|
|
|
public class Brick {
|
|
private String ip;
|
|
private String path;
|
|
|
|
public Brick(String ip, String path) {
|
|
super();
|
|
this.ip = ip;
|
|
this.path = path;
|
|
}
|
|
public String getIp() {
|
|
return ip;
|
|
}
|
|
public void setIp(String ip) {
|
|
this.ip = ip;
|
|
}
|
|
public String getPath() {
|
|
return path;
|
|
}
|
|
public void setPath(String path) {
|
|
this.path = path;
|
|
}
|
|
|
|
|
|
}
|