d5e8b6c2a0399f5d8bc60d751a431931cbaa5361
[policy/models.git] / models-interactions / model-impl / sdc / src / main / java / org / onap / policy / sdc / Resource.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * sdc
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019-2020 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.sdc;
23
24 import java.io.Serializable;
25 import java.util.UUID;
26
27 import lombok.Data;
28
29 @Data
30 public class Resource implements Serializable {
31
32     private static final long serialVersionUID = -913729158733348027L;
33
34     private UUID resourceUuid;
35     private UUID resourceInvariantUuid;
36     private String resourceName;
37     private String resourceVersion;
38     private String resourceType;
39
40     public Resource() {
41         // Empty Constructor
42     }
43
44     /**
45      * Constructor.
46      *
47      * @param resource copy object
48      */
49     public Resource(Resource resource) {
50         this.resourceUuid = resource.resourceUuid;
51         this.resourceInvariantUuid = resource.resourceInvariantUuid;
52         this.resourceName = resource.resourceName;
53         this.resourceVersion = resource.resourceVersion;
54         this.resourceType = resource.resourceType;
55     }
56
57     public Resource(UUID uuid) {
58         this.resourceUuid = uuid;
59     }
60
61     public Resource(String name, String type) {
62         this.resourceName = name;
63         this.resourceType = type;
64     }
65
66     /**
67      * Constructor.
68      *
69      * @param uuid uuid
70      * @param invariantUuid invariant uuid
71      * @param name name
72      * @param version version
73      * @param type type
74      */
75     public Resource(UUID uuid, UUID invariantUuid, String name, String version, String type) {
76         this.resourceUuid = uuid;
77         this.resourceInvariantUuid = invariantUuid;
78         this.resourceName = name;
79         this.resourceVersion = version;
80         this.resourceType = type;
81     }
82 }