79f8161d3ae5e42f8cd43a6ab9501b5ed0520ef9
[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 import lombok.Data;
27
28 @Data
29 public class Resource implements Serializable {
30
31     private static final long serialVersionUID = -913729158733348027L;
32
33     private UUID resourceUuid;
34     private UUID resourceInvariantUuid;
35     private String resourceName;
36     private String resourceVersion;
37     private String resourceType;
38
39     public Resource() {
40         // Empty Constructor
41     }
42
43     /**
44      * Constructor.
45      *
46      * @param resource copy object
47      */
48     public Resource(Resource resource) {
49         this.resourceUuid = resource.resourceUuid;
50         this.resourceInvariantUuid = resource.resourceInvariantUuid;
51         this.resourceName = resource.resourceName;
52         this.resourceVersion = resource.resourceVersion;
53         this.resourceType = resource.resourceType;
54     }
55
56     public Resource(UUID uuid) {
57         this.resourceUuid = uuid;
58     }
59
60     public Resource(String name, String type) {
61         this.resourceName = name;
62         this.resourceType = type;
63     }
64
65     /**
66      * Constructor.
67      *
68      * @param uuid uuid
69      * @param invariantUuid invariant uuid
70      * @param name name
71      * @param version version
72      * @param type type
73      */
74     public Resource(UUID uuid, UUID invariantUuid, String name, String version, String type) {
75         this.resourceUuid = uuid;
76         this.resourceInvariantUuid = invariantUuid;
77         this.resourceName = name;
78         this.resourceVersion = version;
79         this.resourceType = type;
80     }
81 }