001package com.tibco.xp.runtime.property;
002
003//      Name
004//      $RCSfile: Deploy.java,v $
005//
006//      Copyright
007//      Copyright 2013 Cloud Software Group, Inc. ALL RIGHTS RESERVED. 
008//      Cloud Software Group, Inc. Confidential Information
009//
010//      History
011//      $Revision: 1.4 $ $Date: 2013/05/08 16:39:20 $
012//
013/**
014* Property names for system properties which may be set at deployment 
015* time and read by the application at runtime.
016* <p>
017* These properties may be optionally set as system properties during
018* deployment using the -DPropertyName=propertyValue JVM option.
019* <p>
020* These properties may be read by the application at runtime using
021* System.getProperty().
022* <p>
023* Setting these properties programmatically at runtime is not supported and
024* will result in undefined behavior.
025*/
026public class Deploy
027{
028        /**
029         * {@value} -
030         * The default transaction isolation.
031         * <p>
032         * A string property.
033         * A value of READ_COMMITTED_SNAPSHOT sets read committed snapshot as
034         * the default transaction isolation level.
035         * A value of SERIALIZABLE uses a serializable default transaction isolation level.
036         * The default value is SERIALIZABLE.
037         */
038        public static final String DEFAULT_TRANSACTION_ISOLATION =
039                "com.tibco.xp.runtime.defaultTransactionIsolation";
040}