ing
This commit is contained in:
parent
2dfdbb1a00
commit
2c33505fa2
2
pom.xml
2
pom.xml
|
@ -13,7 +13,7 @@
|
|||
<groupId>com.loafle.overflow</groupId>
|
||||
<artifactId>commons-java</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0.51-SNAPSHOT</version>
|
||||
<version>1.0.52-SNAPSHOT</version>
|
||||
<name>com.loafle.overflow.commons-java</name>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -70,6 +70,10 @@ public class MetaEmailType {
|
|||
this.value = value;
|
||||
}
|
||||
|
||||
public Short getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public MetaEmailType to() {
|
||||
return new MetaEmailType(this.value);
|
||||
}
|
||||
|
|
|
@ -68,6 +68,10 @@ public class MetaIPType {
|
|||
this.value = value;
|
||||
}
|
||||
|
||||
public Short getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public MetaIPType to() {
|
||||
return new MetaIPType(this.value);
|
||||
}
|
||||
|
|
|
@ -73,6 +73,10 @@ public class MetaInfraType {
|
|||
this.value = value;
|
||||
}
|
||||
|
||||
public Short getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public MetaInfraType to() {
|
||||
return new MetaInfraType(this.value);
|
||||
}
|
||||
|
|
|
@ -81,6 +81,10 @@ public class MetaMemberStatus {
|
|||
this.value = value;
|
||||
}
|
||||
|
||||
public Short getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public MetaMemberStatus to() {
|
||||
return new MetaMemberStatus(this.value);
|
||||
}
|
||||
|
|
|
@ -80,6 +80,10 @@ public class MetaNoAuthProbeStatus {
|
|||
this.value = value;
|
||||
}
|
||||
|
||||
public Short getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public MetaNoAuthProbeStatus to() {
|
||||
return new MetaNoAuthProbeStatus(this.value);
|
||||
}
|
||||
|
|
|
@ -79,6 +79,10 @@ public class MetaProbeStatus {
|
|||
this.value = value;
|
||||
}
|
||||
|
||||
public Short getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public MetaProbeStatus to() {
|
||||
return new MetaProbeStatus(this.value);
|
||||
}
|
||||
|
|
|
@ -28,6 +28,10 @@ public class MetaTargetHostType extends MetaTargetType {
|
|||
this.value = value;
|
||||
}
|
||||
|
||||
public Integer getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public MetaTargetHostType to() {
|
||||
return new MetaTargetHostType(this.value);
|
||||
}
|
||||
|
|
|
@ -28,6 +28,10 @@ public class MetaTargetServiceType extends MetaTargetType {
|
|||
this.value = value;
|
||||
}
|
||||
|
||||
public Integer getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public MetaTargetServiceType to() {
|
||||
return new MetaTargetServiceType(this.value);
|
||||
}
|
||||
|
|
|
@ -81,6 +81,10 @@ public class MetaTargetStatus {
|
|||
this.value = value;
|
||||
}
|
||||
|
||||
public Short getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public MetaTargetStatus to() {
|
||||
return new MetaTargetStatus(this.value);
|
||||
}
|
||||
|
|
|
@ -29,6 +29,10 @@ public class MetaTargetZoneType extends MetaTargetType {
|
|||
this.value = value;
|
||||
}
|
||||
|
||||
public Integer getValue() {
|
||||
return this.value;
|
||||
}
|
||||
|
||||
public MetaTargetZoneType to() {
|
||||
return new MetaTargetZoneType(this.value);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user