First part of onap rename
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / onap / appc / flow / controller / data / ActionIdentifier.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APP-C
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.onap.appc.flow.controller.data;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24
25 public class ActionIdentifier {
26     
27     @Override
28     public int hashCode() {
29         final int prime = 31;
30         int result = 1;
31         result = prime * result + ((vnfId == null) ? 0 : vnfId.hashCode());
32         return result;
33     }
34
35     @Override
36     public boolean equals(Object obj) {
37         if (this == obj)
38             return true;
39         if (obj == null)
40             return false;
41         if (getClass() != obj.getClass())
42             return false;
43         ActionIdentifier other = (ActionIdentifier) obj;
44         if (vnfId == null) {
45             if (other.vnfId != null)
46                 return false;
47         } else if (!vnfId.equals(other.vnfId))
48             return false;
49         return true;
50     }
51
52     @JsonProperty("vnf-id")
53     private String vnfId ;
54
55     public String getVnfId() {
56         return vnfId;
57     }
58
59     public void setVnfId(String vnfId) {
60         this.vnfId = vnfId;
61     }
62
63     @Override
64     public String toString() {
65         return "ActionIdentifier [vnfId=" + vnfId + "]";
66     }
67
68     
69     
70 }