[SDC-29] Amdocs OnBoard 1707 initial commit.
[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
29 public class ServiceElement {
30
31   private String vspId;
32   private Version version;
33   private String name;
34   private byte[] contentData;
35
36   public ServiceElement() {
37   }
38
39   public String getVspId() {
40     return vspId;
41   }
42
43   public void setVspId(String vspId) {
44     this.vspId = vspId;
45   }
46
47   public Version getVersion() {
48     return version;
49   }
50
51   public void setVersion(Version version) {
52     this.version = version;
53   }
54
55   public String getName() {
56     return name;
57   }
58
59   public void setName(String name) {
60     this.name = name;
61   }
62
63   /**
64    * Gets content.
65    *
66    * @return the content
67    */
68   public InputStream getContent() {
69     if (this.contentData == null) {
70       return null;
71     }
72     return new ByteArrayInputStream(contentData);
73   }
74
75   public void setContentData(byte[] contentData) {
76     this.contentData = contentData;
77   }
78 }