1 package org.smartcomps.twister.common.configuration;
2
3 import java.util.*;
4
5 public class DeployerConfiguration extends XMLConfigurationReader {
6
7 private static final String PROCESS_DEF_URL_PATH = "//twister/deployer/namespaces/map";
8 private static final String PROCESS_DEF_URL_KEY = "remote-url";
9 private static final String PROCESS_DEF_URL_VALUE = "local-url";
10 private static final String UNCHECKED_URL_PATH = "//twister/deployer/namespaces/ignore";
11
12 public static Map getProcessDefMapping() {
13 return getAttributeValues(PROCESS_DEF_URL_PATH, PROCESS_DEF_URL_KEY, PROCESS_DEF_URL_VALUE);
14 }
15
16 public static List getUncheckedDefSchema() {
17 return getNodeValues(UNCHECKED_URL_PATH);
18 }
19 }
This page was automatically generated by Maven