1
2
3
4
5
6
7
8
9
10
11
12
13 package com.eviware.soapui.model.propertyexpansion;
14
15 import com.eviware.soapui.model.testsuite.TestProperty;
16
17 public interface PropertyExpansion
18 {
19
20 public static final String SYSTEM_REFERENCE = "#System#";
21 public static final String ENV_REFERENCE = "#Env#";
22 public static final String GLOBAL_REFERENCE = "#Global#";
23 public static final String PROJECT_REFERENCE = "#Project#";
24 public static final String TESTSUITE_REFERENCE = "#TestSuite#";
25 public static final String TESTCASE_REFERENCE = "#TestCase#";
26 public static final String MOCKSERVICE_REFERENCE = "#MockService#";
27 public static final String MOCKRESPONSE_REFERENCE = "#MockResponse#";
28
29 public static final char PROPERTY_SEPARATOR = '#';
30 public static final char XPATH_SEPARATOR = '#';
31 public static final char SCOPE_PREFIX = '#';
32
33 public TestProperty getProperty();
34
35 public String toString();
36
37 public String getXPath();
38
39 public String getContainerInfo();
40 }