03bf2de328046d0f294497bb1c665bf7e4d9dafd
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdcrests.vendorlicense.types;
21
22 import javax.validation.constraints.NotNull;
23 import javax.validation.constraints.Size;
24
25 public class FeatureGroupDescriptorDto {
26
27     @NotNull
28     @Size(max = 120)
29     private String name;
30     @Size(max = 1000)
31     private String description;
32     @NotNull
33     private String partNumber;
34
35     public String getName() {
36         return name;
37     }
38
39     public void setName(String name) {
40         this.name = name;
41     }
42
43     public String getDescription() {
44         return description;
45     }
46
47     public void setDescription(String description) {
48         this.description = description;
49     }
50
51     public String getPartNumber() {
52         return partNumber;
53     }
54
55     public void setPartNumber(String partNumber) {
56         this.partNumber = partNumber;
57     }
58 }