View Javadoc

1   /*
2    *  soapUI, copyright (C) 2004-2008 eviware.com 
3    *
4    *  soapUI is free software; you can redistribute it and/or modify it under the 
5    *  terms of version 2.1 of the GNU Lesser General Public License as published by 
6    *  the Free Software Foundation.
7    *
8    *  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without 
9    *  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
10   *  See the GNU Lesser General Public License for more details at gnu.org.
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  	// scope specifiiers
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  }