2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
20 package org.openecomp.sdc.vendorsoftwareproduct.dao.type;
22 import java.util.List;
24 import lombok.NoArgsConstructor;
26 import org.openecomp.sdc.versioning.dao.types.Version;
27 import org.openecomp.sdc.versioning.dao.types.VersionableEntity;
32 public class VspDetails implements VersionableEntity {
34 public static final String ENTITY_TYPE = "Vendor Software Product";
36 private Version version;
38 private String description;
39 private String category;
40 private String subCategory;
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;
50 public VspDetails(String id, Version version) {
52 this.version = version;
56 public String getEntityType() {
61 public String getFirstClassCitizenId() {
66 public String toString() {
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);