Refactor dblib
[ccsdk/sli/core.git] / sli / common / src / main / java / org / onap / ccsdk / sli / core / sli / SvcLogicVariableTerm.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : CCSDK
4  * ================================================================================
5  * Copyright (C) 2017 ONAP
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.ccsdk.sli.core.sli;
22
23 public class SvcLogicVariableTerm extends SvcLogicExpression {
24         
25         private String name = null;
26         
27         public String getName() {
28                 return name;
29         }
30
31         
32         public SvcLogicVariableTerm(String identifier)
33         {
34                 this.name = identifier;
35         }
36         
37         public SvcLogicExpression getSubscript()
38         {
39                 if (numOperands() > 0)
40                 {
41                         return(getOperands().get(0));
42                 }
43                 else
44                 {
45                         return(null);
46                 }
47         }
48
49         
50         public String toString()
51         {
52                 String retval = "";
53                 
54                 if (numOperands() > 0)
55                 {
56                         retval = name + "[" + getSubscript().toString() + "]";
57                 }
58                 else
59                 {
60                         retval = name;
61                 }
62                 return(retval);
63         }
64
65         @Override
66         public String asParsedExpr() {
67                 if (numOperands() == 0) {
68                         return("(variable-term "+name+")");
69                 }
70                 else
71                 {
72                         return("(variable-term "+name+" "+getSubscript().asParsedExpr()+")");
73                 }
74         }
75
76 }