88b020b673ad691e18e745297ef1e30f361028da
[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.sdc.vendorsoftwareproduct.dao.type;
21
22 import java.util.List;
23 import lombok.Getter;
24 import lombok.NoArgsConstructor;
25 import lombok.Setter;
26 import org.openecomp.sdc.versioning.dao.types.Version;
27 import org.openecomp.sdc.versioning.dao.types.VersionableEntity;
28
29 @Getter
30 @Setter
31 @NoArgsConstructor
32 public class VspDetails implements VersionableEntity {
33
34     public static final String ENTITY_TYPE = "Vendor Software Product";
35     private String id;
36     private Version version;
37     private String name;
38     private String description;
39     private String category;
40     private String subCategory;
41     private String icon;
42     private String vendorName;
43     private String vendorId;
44     private Version vlmVersion;
45     private String licenseType;
46     private String licenseAgreement;
47     private List<String> featureGroups;
48     private String onboardingMethod;
49
50     public VspDetails(String id, Version version) {
51         this.id = id;
52         this.version = version;
53     }
54
55     @Override
56     public String getEntityType() {
57         return ENTITY_TYPE;
58     }
59
60     @Override
61     public String getFirstClassCitizenId() {
62         return getId();
63     }
64
65     @Override
66     public String toString() {
67         return String
68             .format("Vsp id = '%s', Version = %s', Name = %s', Category = %s', Description = %s', Vendor = %s'", this.id, this.version, this.name,
69                 this.category, this.description, this.vendorName);
70     }
71 }