[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-software-products-rest / vendor-software-products-rest-types / src / main / java / org / openecomp / sdcrests / vendorsoftwareproducts / types / ComponentRequestDto.java
index 8d2fd4b..364e119 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
 
+import javax.validation.constraints.NotNull;
+import javax.validation.constraints.Size;
+
 public class ComponentRequestDto {
 
   private String name;
+  @NotNull(message = "VFC displayName is mandatory.")
+  @Size(min = 1, max = 30,message = "VFC displayName length should be between 1 and 30.")
   private String displayName;
+  @Size(min = 0, max = 1000,message = "description length should not exceed 1000.")
   private String vfcCode;
+  private String nfcCode;
+  private String nfcFunction;
   private String description;
 
   public String getName() {
@@ -58,4 +66,20 @@ public class ComponentRequestDto {
   public void setVfcCode(String vfcCode) {
     this.vfcCode = vfcCode;
   }
+
+  public String getNfcCode() {
+    return nfcCode;
+  }
+
+  public void setNfcCode(String nfcCode) {
+    this.nfcCode = nfcCode;
+  }
+
+  public String getNfcFunction() {
+    return nfcFunction;
+  }
+
+  public void setNfcFunction(String nfcFunction) {
+    this.nfcFunction = nfcFunction;
+  }
 }