Remove MdcDataErrorMessage #2
[sdc.git] / openecomp-be / lib / openecomp-sdc-model-lib / openecomp-sdc-model-api / src / main / java / org / openecomp / core / model / types / EnrichedServiceTemplateEntity.java
1 /*
2  * Copyright © 2016-2017 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.core.model.types;
18
19 import com.datastax.driver.mapping.annotations.ClusteringColumn;
20 import com.datastax.driver.mapping.annotations.Column;
21 import com.datastax.driver.mapping.annotations.Frozen;
22 import com.datastax.driver.mapping.annotations.PartitionKey;
23 import com.datastax.driver.mapping.annotations.Table;
24 import com.google.common.io.ByteStreams;
25 import org.openecomp.sdc.common.errors.SdcRuntimeException;
26 import org.openecomp.sdc.datatypes.error.ErrorLevel;
27 import org.openecomp.sdc.logging.types.LoggerConstants;
28 import org.openecomp.sdc.logging.types.LoggerErrorCode;
29 import org.openecomp.sdc.logging.types.LoggerErrorDescription;
30 import org.openecomp.sdc.logging.types.LoggerTragetServiceName;
31 import org.openecomp.sdc.versioning.dao.types.Version;
32
33 import java.io.IOException;
34 import java.nio.ByteBuffer;
35
36 @Table(keyspace = "dox", name = "vsp_enriched_service_template")
37 public class EnrichedServiceTemplateEntity implements ServiceElementEntity {
38
39     private static final String ENTITY_TYPE;
40
41     static {
42         ENTITY_TYPE = "Vendor Software Product Service model";
43     }
44
45     @PartitionKey
46     @Column(name = "vsp_id")
47     public String id;
48
49     @PartitionKey(value = 1)
50     @Frozen
51     public Version version;
52
53     @ClusteringColumn
54     @Column(name = "name")
55     public String name;
56
57     @Column(name = "content_data")
58     public ByteBuffer contentData;
59
60     @Column(name = "base_name")
61     private String baseName;
62
63     /**
64      * Every entity class must have a default constructor according to
65      * <a href="http://docs.datastax.com/en/developer/java-driver/2.1/manual/object_mapper/creating/">
66      * Definition of mapped classes</a>.
67      */
68     public EnrichedServiceTemplateEntity() {
69         // Don't delete! Default constructor is required by DataStax driver
70     }
71
72     /**
73      * Instantiates a new Enriched service template entity.
74      *
75      * @param entity the entity
76      */
77     public EnrichedServiceTemplateEntity(ServiceTemplate entity) {
78         this.id = entity.getVspId();
79         this.version = entity.getVersion();
80         this.name = entity.getName();
81         this.setBaseName(entity.getBaseName());
82         try {
83             this.contentData = ByteBuffer.wrap(ByteStreams.toByteArray(entity.getContent()));
84         } catch (IOException ioException) {
85             throw new SdcRuntimeException(ioException);
86         }
87
88     }
89
90     public String getBaseName() {
91         return baseName;
92     }
93
94     public void setBaseName(String baseName) {
95         this.baseName = baseName;
96     }
97
98     @Override
99     public String getEntityType() {
100         return ENTITY_TYPE;
101     }
102
103     @Override
104     public String getFirstClassCitizenId() {
105         return getId();
106     }
107
108     @Override
109     public String getId() {
110         return id;
111     }
112
113     @Override
114     public void setId(String id) {
115         this.id = id;
116     }
117
118     @Override
119     public Version getVersion() {
120         return version;
121     }
122
123     @Override
124     public void setVersion(Version version) {
125         this.version = version;
126     }
127
128     @Override
129     public String getName() {
130         return name;
131     }
132
133     public void setName(String name) {
134         this.name = name;
135     }
136
137     @Override
138     public ByteBuffer getContentData() {
139         return contentData;
140     }
141
142     public void setContentData(ByteBuffer contentData) {
143         this.contentData = contentData;
144     }
145
146     public ServiceTemplate getServiceTemplate() {
147         ServiceTemplate serviceTemplate = new ServiceTemplate();
148         serviceTemplate.setName(getName());
149         serviceTemplate.setVersion(getVersion());
150         serviceTemplate.setContentData(getContentData().array());
151         serviceTemplate.setVspId(getId());
152         serviceTemplate.setBaseName(getBaseName());
153         return serviceTemplate;
154     }
155 }