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 GLOBAL_REFERENCE = "#Global#";
21 public static final String PROJECT_REFERENCE = "#Project#";
22 public static final String TESTSUITE_REFERENCE = "#TestSuite#";
23 public static final String TESTCASE_REFERENCE = "#TestCase#";
24 public static final String MOCKSERVICE_REFERENCE = "#MockService#";
25 public static final String MOCKRESPONSE_REFERENCE = "#MockResponse#";
26
27 public static final char PROPERTY_SEPARATOR = '#';
28 public static final char XPATH_SEPARATOR = '#';
29 public static final char SCOPE_PREFIX = '#';
30
31 public TestProperty getProperty();
32
33 public String toString();
34
35 public String getXPath();
36
37 public String getContainerInfo();
38 }