aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openecomp/datarouter/util/DataRouterProperties.java
blob: 21e36a2dc6d7520ad7a575fd1693bf3c175a66d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * Copyright © 2017 Amdocs
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 *
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 */
package org.openecomp.datarouter.util;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Properties;

public class DataRouterProperties {

  private static Properties properties;

  static {
    properties = new Properties();
    File file = new File(DataRouterConstants.DR_CONFIG_FILE);
    try {
      properties.load(new FileInputStream(file));
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    }
  }

  public static String get(String key) {
    return properties.getProperty(key);
  }

}
pan> xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.onap.org/sdnc/svclogic ./svclogic.xsd' module='optical-service' version='${project.version}'> <method rpc='delete-bandwidth-update-odu2' mode='sync'> <block atomic="true"> <switch test='`$optical-service-create-input.payload.service-rate`'> <outcome value='ODU0'> <block> <set> <parameter name='new-rate' value='' /> </set> <for index='idx' start='0' end='pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth_length' > <set> <parameter name='odu-name' value='`$pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[$idx].odu-type`' /> <parameter name='odu-number' value='`$pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[$idx].number`' /> </set> <switch test='`$odu-name`'> <outcome value='ODU0'> <block> <set> <parameter name='new-rate' value='`$new-rate + $odu-number * 1.25 + 1.25 `' /> <parameter name='new-odu-number' value='`$new-rate / 1.25`' /> </set> <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' force='true' resource='available-bandwidth' key='pnf.pnf-name = $pnf-name AND p-interface.interface-name = $pinterface-name AND bandwidth-attribute.id = $pin.bandwidth-attributes.bandwidth-attribute[0].id AND available-bandwidth.id = $pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[0].id' local-only='false'> <parameter name='number' value='`$new-odu-number`' /> </update> </block> </outcome> <outcome value='ODU1'> <block> <set> <parameter name='new-odu-number' value='`$new-rate / 2.5`' /> </set> <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' force='true' resource='available-bandwidth' key='pnf.pnf-name = $pnf-name AND p-interface.interface-name = $pinterface-name AND bandwidth-attribute.id = $pin.bandwidth-attributes.bandwidth-attribute[0].id AND available-bandwidth.id = $pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[0].id' local-only='false'> <parameter name='number' value='`$new-odu-number`' /> </update> </block> </outcome> <outcome value='ODU2'> <block> <set> <parameter name='new-odu-number' value='0' /> </set> <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' force='true' resource='available-bandwidth' key='pnf.pnf-name = $pnf-name AND p-interface.interface-name = $pinterface-name AND bandwidth-attribute.id = $pin.bandwidth-attributes.bandwidth-attribute[0].id AND available-bandwidth.id = $pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[0].id' local-only='false'> <parameter name='number' value='`$new-odu-number`' /> </update> </block> </outcome> </switch> </for> </block> </outcome> <outcome value='ODU1'> <block> <set> <parameter name='new-rate' value='' /> </set> <for index='idx' start='0' end='pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth_length' > <set> <parameter name='odu-name' value='`$pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[$idx].odu-type`' /> <parameter name='odu-number' value='`$pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[$idx].number`' /> </set> <switch test='`$odu-name`'> <outcome value='ODU0'> <block> <set> <parameter name='new-rate' value='`$new-rate + $odu-number * 1.5 + 2.5`' /> <parameter name='new-odu-number' value='`$new-rate / 1.25`' /> </set> <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' force='true' resource='available-bandwidth' key='pnf.pnf-name = $pnf-name AND p-interface.interface-name = $pinterface-name AND bandwidth-attribute.id = $pin.bandwidth-attributes.bandwidth-attribute[0].id AND available-bandwidth.id = $pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[0].id' local-only='false'> <parameter name='number' value='`$new-odu-number`' /> </update> </block> </outcome> <outcome value='ODU1'> <block> <set> <parameter name='new-odu-number' value='`$new-rate / 2.5`' /> </set> <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' force='true' resource='available-bandwidth' key='pnf.pnf-name = $pnf-name AND p-interface.interface-name = $pinterface-name AND bandwidth-attribute.id = $pin.bandwidth-attributes.bandwidth-attribute[0].id AND available-bandwidth.id = $pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[0].id' local-only='false'> <parameter name='number' value='`$new-odu-number`' /> </update> </block> </outcome> <outcome value='ODU2'> <block> <set> <parameter name='new-odu-number' value='`$new-rate / 10`' /> </set> <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' force='true' resource='available-bandwidth' key='pnf.pnf-name = $pnf-name AND p-interface.interface-name = $pinterface-name AND bandwidth-attribute.id = $pin.bandwidth-attributes.bandwidth-attribute[0].id AND available-bandwidth.id = $pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[0].id' local-only='false'> <parameter name='number' value='`$new-odu-number`' /> </update> </block> </outcome> </switch> </for> </block> </outcome> <outcome value='ODU2'> <for index='idx' start='0' end='pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth_length' > <set> <parameter name='odu-name' value='`$pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[$idx].odu-type`' /> <parameter name='odu-number' value='`$pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[$idx].number`' /> </set> <switch test='`$odu-name`'> <outcome value='ODU0'> <block> <set> <parameter name='new-odu-number' value='0' /> </set> <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' force='true' resource='available-bandwidth' key='pnf.pnf-name = $pnf-name AND p-interface.interface-name = $pinterface-name AND bandwidth-attribute.id = $pin.bandwidth-attributes.bandwidth-attribute[0].id AND available-bandwidth.id = $pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[0].id' local-only='false'> <parameter name='number' value='`$new-odu-number`' /> </update> </block> </outcome> <outcome value='ODU1'> <block> <set> <parameter name='new-odu-number' value='0' /> </set> <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' force='true' resource='available-bandwidth' key='pnf.pnf-name = $pnf-name AND p-interface.interface-name = $pinterface-name AND bandwidth-attribute.id = $pin.bandwidth-attributes.bandwidth-attribute[0].id AND available-bandwidth.id = $pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[0].id' local-only='false'> <parameter name='number' value='`$new-odu-number`' /> </update> </block> </outcome> <outcome value='ODU2'> <block> <set> <parameter name='new-odu-number' value='1' /> </set> <update plugin='org.onap.ccsdk.sli.adaptors.aai.AAIService' force='true' resource='available-bandwidth' key='pnf.pnf-name = $pnf-name AND p-interface.interface-name = $pinterface-name AND bandwidth-attribute.id = $pin.bandwidth-attributes.bandwidth-attribute[0].id AND available-bandwidth.id = $pin.bandwidth-attributes.bandwidth-attribute[0].available-bandwidth-map.available-bandwidth[0].id' local-only='false'> <parameter name='number' value='`$new-odu-number`' /> </update> </block> </outcome> </switch> </for> </outcome> </switch> </block> </method> </service-logic>