This commit is contained in:
crusader 2018-06-12 15:25:37 +09:00
parent 2dfdbb1a00
commit 2c33505fa2
11 changed files with 41 additions and 1 deletions

View File

@ -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>

View File

@ -70,6 +70,10 @@ public class MetaEmailType {
this.value = value;
}
public Short getValue() {
return this.value;
}
public MetaEmailType to() {
return new MetaEmailType(this.value);
}

View File

@ -68,6 +68,10 @@ public class MetaIPType {
this.value = value;
}
public Short getValue() {
return this.value;
}
public MetaIPType to() {
return new MetaIPType(this.value);
}

View File

@ -73,6 +73,10 @@ public class MetaInfraType {
this.value = value;
}
public Short getValue() {
return this.value;
}
public MetaInfraType to() {
return new MetaInfraType(this.value);
}

View File

@ -81,6 +81,10 @@ public class MetaMemberStatus {
this.value = value;
}
public Short getValue() {
return this.value;
}
public MetaMemberStatus to() {
return new MetaMemberStatus(this.value);
}

View File

@ -80,6 +80,10 @@ public class MetaNoAuthProbeStatus {
this.value = value;
}
public Short getValue() {
return this.value;
}
public MetaNoAuthProbeStatus to() {
return new MetaNoAuthProbeStatus(this.value);
}

View File

@ -79,6 +79,10 @@ public class MetaProbeStatus {
this.value = value;
}
public Short getValue() {
return this.value;
}
public MetaProbeStatus to() {
return new MetaProbeStatus(this.value);
}

View File

@ -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);
}

View File

@ -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);
}

View File

@ -81,6 +81,10 @@ public class MetaTargetStatus {
this.value = value;
}
public Short getValue() {
return this.value;
}
public MetaTargetStatus to() {
return new MetaTargetStatus(this.value);
}

View File

@ -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);
}