push addional code
[sdc.git] / openecomp-be / lib / openecomp-sdc-model-lib / openecomp-sdc-model-api / src / main / java / org / openecomp / core / model / types / ServiceElement.java
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
21 package org.openecomp.core.model.types;
22
23 import org.openecomp.sdc.versioning.dao.types.Version;
24
25 import java.io.ByteArrayInputStream;
26 import java.io.InputStream;
27
28 public class ServiceElement {
29
30   private String vspId;
31   private Version version;
32   private String name;
33   private byte[] contentData;
34
35   public ServiceElement() {
36   }
37
38   public String getVspId() {
39     return vspId;
40   }
41
42   public void setVspId(String vspId) {
43     this.vspId = vspId;
44   }
45
46   public Version getVersion() {
47     return version;
48   }
49
50   public void setVersion(Version version) {
51     this.version = version;
52   }
53
54   public String getName() {
55     return name;
56   }
57
58   public void setName(String name) {
59     this.name = name;
60   }
61
62   /**
63    * Gets content.
64    *
65    * @return the content
66    */
67   public InputStream getContent() {
68     if (this.contentData == null) {
69       return null;
70     }
71     return new ByteArrayInputStream(contentData);
72   }
73
74   public void setContentData(byte[] contentData) {
75     this.contentData = contentData;
76   }
77 }