Change nexus values to properties
[appc.git] / app-c / appc / appc-dispatcher / appc-dispatcher-common / state-machine-lib / src / main / java / org / openecomp / appc / statemachine / objects / State.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
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.openecomp.appc.statemachine.objects;
23
24 import java.util.ArrayList;
25 import java.util.List;
26 import java.util.Map;
27 import java.util.concurrent.ConcurrentHashMap;
28
29
30
31 public class State{
32         private String stateName;
33         private List<Transition> transitions;
34
35         private State(){
36                 
37         }
38         
39         public State(String state){
40                 this();
41                 this.stateName = state;
42                 this.transitions = new ArrayList<Transition>();
43         }
44         
45         @Override
46         public int hashCode(){
47                 return this.stateName.hashCode();
48         }
49         
50         @Override
51         public boolean equals(Object obj){
52                 if(obj == null){
53                         return false;
54                 }
55                 if(!(obj instanceof State)){
56                         return false;
57                 }
58                 State state = (State)obj;
59                 return this.stateName.equals(state.getStateName());
60         }
61         
62
63         public String getStateName(){
64                 return stateName;
65         }
66         
67         void addTransition(Transition transition){
68                 this.transitions.add(transition);
69         }
70
71         public List<Transition> getTransitions() {
72                 return transitions;
73         }
74
75         @Override
76         public String toString(){
77                 return this.stateName;
78         }
79 }