ing
This commit is contained in:
parent
447f0b6d1d
commit
8ba84132f7
2
pom.xml
2
pom.xml
|
@ -13,7 +13,7 @@
|
||||||
<groupId>com.loafle.overflow</groupId>
|
<groupId>com.loafle.overflow</groupId>
|
||||||
<artifactId>commons-java</artifactId>
|
<artifactId>commons-java</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>1.0.46-SNAPSHOT</version>
|
<version>1.0.47-SNAPSHOT</version>
|
||||||
<name>com.loafle.overflow.commons-java</name>
|
<name>com.loafle.overflow.commons-java</name>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -16,6 +16,9 @@ public class InfraZone extends Infra {
|
||||||
|
|
||||||
private MetaIPType metaIPType;
|
private MetaIPType metaIPType;
|
||||||
private String network;
|
private String network;
|
||||||
|
private String iface;
|
||||||
|
private String address;
|
||||||
|
private String mac;
|
||||||
|
|
||||||
@ManyToOne
|
@ManyToOne
|
||||||
@JoinColumn(name = "META_TARGET_ZONE_TYPE_ID", nullable = true)
|
@JoinColumn(name = "META_TARGET_ZONE_TYPE_ID", nullable = true)
|
||||||
|
@ -27,6 +30,7 @@ public class InfraZone extends Infra {
|
||||||
this.metaTargetZoneType = metaTargetZoneType;
|
this.metaTargetZoneType = metaTargetZoneType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Basic
|
@Basic
|
||||||
@Column(name = "NETWORK", nullable = true)
|
@Column(name = "NETWORK", nullable = true)
|
||||||
public String getNetwork() {
|
public String getNetwork() {
|
||||||
|
@ -37,6 +41,16 @@ public class InfraZone extends Infra {
|
||||||
this.network = network;
|
this.network = network;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Basic
|
||||||
|
@Column(name = "IFACE", nullable = true)
|
||||||
|
public String getIface() {
|
||||||
|
return iface;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIface(String iface) {
|
||||||
|
this.iface = iface;
|
||||||
|
}
|
||||||
|
|
||||||
@ManyToOne
|
@ManyToOne
|
||||||
@JoinColumn(name = "META_IP_TYPE_ID", nullable = true)
|
@JoinColumn(name = "META_IP_TYPE_ID", nullable = true)
|
||||||
public MetaIPType getMetaIPType() {
|
public MetaIPType getMetaIPType() {
|
||||||
|
@ -46,4 +60,25 @@ public class InfraZone extends Infra {
|
||||||
public void setMetaIPType(MetaIPType metaIPType) {
|
public void setMetaIPType(MetaIPType metaIPType) {
|
||||||
this.metaIPType = metaIPType;
|
this.metaIPType = metaIPType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Basic
|
||||||
|
@Column(name = "ADDRESS", nullable = true)
|
||||||
|
public String getAddress() {
|
||||||
|
return address;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAddress(String address) {
|
||||||
|
this.address = address;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Basic
|
||||||
|
@Column(name = "MAC", nullable = true)
|
||||||
|
public String getMac() {
|
||||||
|
return mac;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMac(String mac) {
|
||||||
|
this.mac = mac;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user