aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/nbi/apis/serviceorder/model/TargetServiceSchema.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/onap/nbi/apis/serviceorder/model/TargetServiceSchema.java')
-rwxr-xr-xsrc/main/java/org/onap/nbi/apis/serviceorder/model/TargetServiceSchema.java11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/main/java/org/onap/nbi/apis/serviceorder/model/TargetServiceSchema.java b/src/main/java/org/onap/nbi/apis/serviceorder/model/TargetServiceSchema.java
index 42bdf9e..3013659 100755
--- a/src/main/java/org/onap/nbi/apis/serviceorder/model/TargetServiceSchema.java
+++ b/src/main/java/org/onap/nbi/apis/serviceorder/model/TargetServiceSchema.java
@@ -34,7 +34,6 @@
* the License.
*/
-
package org.onap.nbi.apis.serviceorder.model;
import com.fasterxml.jackson.annotation.JsonProperty;
@@ -48,7 +47,8 @@ import javax.validation.constraints.Pattern;
*
*/
@ApiModel(description = "")
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
+@javax.annotation.Generated(
+ value = "io.swagger.codegen.languages.JavaJerseyServerCodegen",
date = "2018-02-19T14:00:30.767Z")
public class TargetServiceSchema {
@JsonProperty("@type")
@@ -68,7 +68,7 @@ public class TargetServiceSchema {
@JsonProperty("@type")
@ApiModelProperty(required = true, value = "")
@NotNull(message = "TargetServiceSchema @type cannot be null")
- @Pattern(regexp="^(?!\\s*$).+", message="TargetServiceSchema @type cannot be empty")
+ @Pattern(regexp = "^(?!\\s*$).+", message = "TargetServiceSchema @type cannot be empty")
public String getType() {
return type;
}
@@ -88,7 +88,7 @@ public class TargetServiceSchema {
@JsonProperty("@schemaLocation")
@ApiModelProperty(required = true, value = "")
@NotNull(message = "TargetServiceSchema @schemaLocation cannot be null")
- @Pattern(regexp="^(?!\\s*$).+", message="TargetServiceSchema @schemaLocation cannot be empty")
+ @Pattern(regexp = "^(?!\\s*$).+", message = "TargetServiceSchema @schemaLocation cannot be empty")
public String getSchemaLocation() {
return schemaLocation;
}
@@ -97,7 +97,6 @@ public class TargetServiceSchema {
this.schemaLocation = schemaLocation;
}
-
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
@@ -116,7 +115,6 @@ public class TargetServiceSchema {
return Objects.hash(type, schemaLocation);
}
-
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
@@ -139,4 +137,3 @@ public class TargetServiceSchema {
return o.toString().replace("\n", "\n ");
}
}
-