package com.vci.client.framework.systemConfig.volumn.object;
|
|
public class PvolumeObject {
|
private String id; //卷id
|
private String name; //卷名称
|
private String host;//卷服务ip
|
private String service; // 服务名
|
private short type; //卷服务类型
|
private String path; //卷服务路径
|
private boolean isvalid; //是否为首选路径
|
|
|
public String getId() {
|
return id;
|
}
|
public void setId(String id) {
|
this.id = id;
|
}
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public String getHost() {
|
return host;
|
}
|
public void setHost(String host) {
|
this.host = host;
|
}
|
|
public String getService() {
|
return service;
|
}
|
public void setService(String service) {
|
this.service = service;
|
}
|
|
public short getType() {
|
return type;
|
}
|
public void setType(short type) {
|
this.type = type;
|
}
|
public String getPath() {
|
return path;
|
}
|
public void setPath(String path) {
|
this.path = path;
|
}
|
public boolean getIsvalid() {
|
return isvalid;
|
}
|
public void setIsvalid(boolean isvalid) {
|
this.isvalid = isvalid;
|
}
|
|
|
}
|