summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/main/java/org/openecomp/sdc/be/resources/data/DAOArtifactData.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-dao/src/main/java/org/openecomp/sdc/be/resources/data/DAOArtifactData.java')
-rw-r--r--catalog-dao/src/main/java/org/openecomp/sdc/be/resources/data/DAOArtifactData.java115
1 files changed, 53 insertions, 62 deletions
diff --git a/catalog-dao/src/main/java/org/openecomp/sdc/be/resources/data/DAOArtifactData.java b/catalog-dao/src/main/java/org/openecomp/sdc/be/resources/data/DAOArtifactData.java
index 2b79c2d79f..87bae33a1c 100644
--- a/catalog-dao/src/main/java/org/openecomp/sdc/be/resources/data/DAOArtifactData.java
+++ b/catalog-dao/src/main/java/org/openecomp/sdc/be/resources/data/DAOArtifactData.java
@@ -7,9 +7,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -17,79 +17,70 @@
* limitations under the License.
* ============LICENSE_END=========================================================
*/
-
package org.openecomp.sdc.be.resources.data;
import com.datastax.driver.mapping.annotations.Column;
import com.datastax.driver.mapping.annotations.PartitionKey;
import com.datastax.driver.mapping.annotations.Table;
import com.datastax.driver.mapping.annotations.Transient;
+import java.nio.ByteBuffer;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
-import java.nio.ByteBuffer;
-
@Getter
@NoArgsConstructor
@Table(keyspace = "sdcartifact", name = "resources")
public class DAOArtifactData {
- public static final String RRESOURCE_ID_FIELD = "resourceId";
-
- public static final String SERVICE_NAME_FIELD = "serviceName";
- public static final String SERVICE_VERSION_FIELD = "serviceVersion";
- public static final String ARTIFACT_NAME_FIELD = "artifactName";
-
- public static final String delim = ":";
-
- @PartitionKey
- @Column(name = "id")
- @Setter
- private String id;
-
- /*
- * Base64 encoded Artifact file data
- */
-
- @Column
- private ByteBuffer data;
-
-
- public DAOArtifactData(String id) {
-
- this.id = id;
- }
-
- public DAOArtifactData(String artifactId, byte[] data) {
- super();
- this.id = artifactId;
- if (data != null) {
- this.data = ByteBuffer.wrap(data.clone());
- // this.data = data.clone();
- }
-
- }
-
- @Transient
- public byte[] getDataAsArray() {
- // return data;
- if (data != null) {
- return data.array();
- }
- return null;
- }
-
- public void setDataAsArray(byte[] data) {
- if (data != null) {
- // this.data = data.clone();
- this.data = ByteBuffer.wrap(data.clone());
- }
- }
- public void setData(ByteBuffer data) {
- if (data != null) {
- // this.data = data.clone();
- this.data = data.duplicate();
- }
- }
+ public static final String RRESOURCE_ID_FIELD = "resourceId";
+ public static final String SERVICE_NAME_FIELD = "serviceName";
+ public static final String SERVICE_VERSION_FIELD = "serviceVersion";
+ public static final String ARTIFACT_NAME_FIELD = "artifactName";
+ public static final String delim = ":";
+ @PartitionKey
+ @Column(name = "id")
+ @Setter
+ private String id;
+ /*
+ * Base64 encoded Artifact file data
+ */
+ @Column
+ private ByteBuffer data;
+
+ public DAOArtifactData(String id) {
+ this.id = id;
+ }
+
+ public DAOArtifactData(String artifactId, byte[] data) {
+ super();
+ this.id = artifactId;
+ if (data != null) {
+ this.data = ByteBuffer.wrap(data.clone());
+ // this.data = data.clone();
+ }
+ }
+
+ @Transient
+ public byte[] getDataAsArray() {
+ // return data;
+ if (data != null) {
+ return data.array();
+ }
+ return null;
+ }
+
+ public void setDataAsArray(byte[] data) {
+ if (data != null) {
+ // this.data = data.clone();
+ this.data = ByteBuffer.wrap(data.clone());
+ }
+ }
+
+ public void setData(ByteBuffer data) {
+ if (data != null) {
+ // this.data = data.clone();
+ this.data = data.duplicate();
+ }
+ }
}