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> <groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId> <artifactId>commons-java</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0.51-SNAPSHOT</version> <version>1.0.52-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -28,6 +28,10 @@ public class MetaTargetHostType extends MetaTargetType {
this.value = value; this.value = value;
} }
public Integer getValue() {
return this.value;
}
public MetaTargetHostType to() { public MetaTargetHostType to() {
return new MetaTargetHostType(this.value); return new MetaTargetHostType(this.value);
} }

View File

@ -28,6 +28,10 @@ public class MetaTargetServiceType extends MetaTargetType {
this.value = value; this.value = value;
} }
public Integer getValue() {
return this.value;
}
public MetaTargetServiceType to() { public MetaTargetServiceType to() {
return new MetaTargetServiceType(this.value); return new MetaTargetServiceType(this.value);
} }

View File

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

View File

@ -29,6 +29,10 @@ public class MetaTargetZoneType extends MetaTargetType {
this.value = value; this.value = value;
} }
public Integer getValue() {
return this.value;
}
public MetaTargetZoneType to() { public MetaTargetZoneType to() {
return new MetaTargetZoneType(this.value); return new MetaTargetZoneType(this.value);
} }