e88965645a16434ea2a5b102f6ca49d10860ae1e
[aai/data-router.git] / src / main / java / org / openecomp / datarouter / util / CrossEntityReference.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 Amdocs
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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.openecomp.datarouter.util;
24
25 import java.util.ArrayList;
26 import java.util.List;
27
28 /**
29  * Processing and entity wrapper for property transposition logic and UEB processing
30  * 
31  * @author DAVEA
32  */
33 public class CrossEntityReference {
34
35   private String targetEntityType;
36
37   private List<String> attributeNames;
38
39   public CrossEntityReference() {
40     this.targetEntityType = null;
41     this.attributeNames = new ArrayList<>();
42   }
43
44   public String getTargetEntityType() {
45     return targetEntityType;
46   }
47
48   public void setTargetEntityType(String targetEntityType) {
49     this.targetEntityType = targetEntityType;
50   }
51
52   public List<String> getAttributeNames() {
53     return attributeNames;
54   }
55
56   public void setAttributeNames(List<String> attributeNames) {
57     this.attributeNames = attributeNames;
58   }
59
60   public void addAttributeName(String attributeName) {
61     if (!this.attributeNames.contains(attributeName)) {
62       this.attributeNames.add(attributeName);
63     }
64   }
65
66   public void initialize(String crossEntityReferenceValueFromModel) {
67
68     if (crossEntityReferenceValueFromModel == null
69         || crossEntityReferenceValueFromModel.length() == 0) {
70       // or throw an exception due to failure to initialize
71       return;
72     }
73
74     String[] tokens = crossEntityReferenceValueFromModel.split(",");
75
76     if (tokens.length >= 2) {
77       this.targetEntityType = tokens[0];
78
79       for (int x = 1; x < tokens.length; x++) {
80         this.attributeNames.add(tokens[x]);
81       }
82     } else {
83       // throw a CrossEntityReferenceInitializationException??
84     }
85
86   }
87
88   @Override
89   public String toString() {
90     return "CrossEntityReference ["
91         + (targetEntityType != null ? "entityType=" + targetEntityType + ", " : "")
92         + (attributeNames != null ? "attributeNames=" + attributeNames : "") + "]";
93   }
94
95 }