diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-11-09 15:29:13 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-11-09 15:29:13 +0000 |
commit | 348fc05ecdb5eaff4035ac8d41b8373ff41d0fa9 (patch) | |
tree | 1cbbae9b25f9a88a2daeb093ad8de0050c0b803f /sca-java-2.x/trunk/modules | |
parent | 21fd1c674cbfd15952c60ca79d45a071b08081f9 (diff) |
Add user constants to the RuntimeProperties
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1199795 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/modules')
-rw-r--r-- | sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeProperties.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeProperties.java b/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeProperties.java index 8cb20dd6bd..82fec73ab8 100644 --- a/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeProperties.java +++ b/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeProperties.java @@ -37,6 +37,16 @@ public interface RuntimeProperties { */ public static final String RELEASE_ON_UNLOAD = "org.apache.tuscany.sca.releaseOnUnload"; + /** + * The name of the binding type to use be default for the remote SCA binding + */ + public static final String SCA_BINDING_TYPE = "org.apache.tuscany.sca.scaBindingType"; + + /** + * Use AXIOM OMElement instead of DOM as the XML object representation + */ + public static final String USE_AXIOM = "org.apache.tuscany.sca.useAxiom"; + Properties getProperties(); void setProperties(Properties properties); } |