5bc23da3de44f14b5b60c2a9214906870a142ebc
[sdc.git] /
1 package org.openecomp.core.enrichment.types;
2
3 import java.io.ByteArrayInputStream;
4 import java.io.InputStream;
5
6 public class ComponentProcessInfo {
7   private String name;
8   private byte[] content;
9
10   public String getName() {
11     return name;
12   }
13
14   public void setName(String name) {
15     this.name = name;
16   }
17
18   public InputStream getContent() {
19     return new ByteArrayInputStream(this.content);
20   }
21
22   public void setContent(byte[] content) {
23     this.content = content;
24   }
25
26 }