2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.action.dao.types;
23 import com.datastax.driver.mapping.annotations.Column;
24 import com.datastax.driver.mapping.annotations.PartitionKey;
25 import com.datastax.driver.mapping.annotations.Table;
27 import lombok.NoArgsConstructor;
29 import org.openecomp.sdc.action.types.ActionArtifact;
31 import java.nio.ByteBuffer;
36 @Table(keyspace = "dox", name = "action_artifact")
37 public class ActionArtifactEntity {
40 @Column(name = "artifactuuid")
41 private String artifactUuId;
43 @PartitionKey(value = 1)
44 @Column(name = "effective_version")
45 private int effectiveVersion;
47 @Column(name = "artifact")
48 private ByteBuffer artifact;
50 public ActionArtifactEntity(String artifactUuId, int effectiveVersion) {
51 this.artifactUuId = artifactUuId;
52 this.effectiveVersion = effectiveVersion;
56 * To dto action artifact.
58 * @return the action artifact
60 public ActionArtifact toDto() {
61 ActionArtifact destination = new ActionArtifact();
62 destination.setArtifactUuId(this.getArtifactUuId());
63 destination.setEffectiveVersion(this.getEffectiveVersion());
64 destination.setArtifact(this.getArtifact().array());