Third part of onap rename
[appc.git] / appc-dispatcher / appc-dispatcher-common / ranking-framework-lib / src / main / java / org / onap / appc / rankingframework / impl / NodeBase.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.rankingframework.impl;
26
27 import java.util.UUID;
28
29 abstract class NodeBase<R> implements Node<R> {
30
31     private final String name;
32     private final Object value;
33     private final Type type;
34     private final CompositeNode<R> parent;
35     private final String id = UUID.randomUUID().toString();
36
37     NodeBase(String name, Object value, CompositeNode<R> parent, Type type) {
38         this.name = name;
39         this.value = value;
40         this.parent = parent;
41         this.type = type;
42     }
43
44     @Override
45     public String id() {
46         return id;
47     }
48
49     @Override
50     public Type type() {
51         return type;
52     }
53
54     @Override
55     public String name() {
56         return name;
57     }
58
59     @Override
60     public Object value() {
61         return value;
62     }
63
64     @Override
65     public CompositeNode<R> parent() {
66         return parent;
67     }
68
69     @Override
70     public boolean isDefaultMatch() {
71         return value.equals(Constants.DEFAULT_MATCH);
72     }
73
74     @Override
75     public String toString() {
76         if (!name.equals("ROOT")) {
77             StringBuffer buff = new StringBuffer(128);
78             if (parent != null) {
79                 buff.append(parent.toString());
80             }
81             buff.append("/{");
82             buff.append(name).append(" = ").append(value);
83             buff.append("}");
84
85             return buff.toString();
86         } else {
87             return "";
88         }
89     }
90 }