bd6a978ed61e930ef457a8c43d56f7590b003f8a
[sdc.git] /
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.sdc.action.dao.types;
22
23 import com.datastax.driver.mapping.annotations.Column;
24 import com.datastax.driver.mapping.annotations.PartitionKey;
25 import com.datastax.driver.mapping.annotations.Table;
26 import lombok.Getter;
27 import lombok.NoArgsConstructor;
28 import lombok.Setter;
29 import org.openecomp.sdc.action.types.ActionArtifact;
30
31 import java.nio.ByteBuffer;
32
33 @Getter
34 @Setter
35 @NoArgsConstructor
36 @Table(keyspace = "dox", name = "action_artifact")
37 public class ActionArtifactEntity {
38
39   @PartitionKey
40   @Column(name = "artifactuuid")
41   private String artifactUuId;
42
43   @PartitionKey(value = 1)
44   @Column(name = "effective_version")
45   private int effectiveVersion;
46
47   @Column(name = "artifact")
48   private ByteBuffer artifact;
49
50   public ActionArtifactEntity(String artifactUuId, int effectiveVersion) {
51     this.artifactUuId = artifactUuId;
52     this.effectiveVersion = effectiveVersion;
53   }
54
55   /**
56    * To dto action artifact.
57    *
58    * @return the action artifact
59    */
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());
65     return destination;
66   }
67 }