You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by ol...@apache.org on 2003/11/12 17:58:09 UTC

cvs commit: db-ojb/src/java/org/apache/ojb/broker/metadata IsolationLevels.java

oliverm     2003/11/12 08:58:09

  Modified:    src/java/org/apache/ojb/broker/metadata IsolationLevels.java
  Log:
  fix crlf problem.
  
  Revision  Changes    Path
  1.3       +70 -70    db-ojb/src/java/org/apache/ojb/broker/metadata/IsolationLevels.java
  
  Index: IsolationLevels.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/metadata/IsolationLevels.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IsolationLevels.java	17 Jun 2002 19:34:09 -0000	1.2
  +++ IsolationLevels.java	12 Nov 2003 16:58:09 -0000	1.3
  @@ -1,4 +1,4 @@
  -package org.apache.ojb.broker.metadata;
  +package org.apache.ojb.broker.metadata;
   
   /* ====================================================================
    * The Apache Software License, Version 1.1
  @@ -53,72 +53,72 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    */
  -
  -/**
  - * This Interface defines Isolation level constants.
  - * It contains numeric constants and literal constants
  - * representing all known isolation levels.
  - * @author Thomas Mahler
  - */
  -public interface IsolationLevels
  -{
  -    /** 
  -     * numeric constant representing the uncommited read isolation level.
  -     */
  -    public final static int IL_READ_UNCOMMITTED = 0;
  -    
  -    /** 
  -     * numeric constant representing the commited read isolation level.
  -     */
  -    public final static int IL_READ_COMMITTED   = 1;
  -    
  -    /** 
  -     * numeric constant representing the repeatable read isolation level.
  -     */
  -    public final static int IL_REPEATABLE_READ  = 2;
  -    
  -    /** 
  -     * numeric constant representing the serializable transactions isolation level.
  -     */
  -    public final static int IL_SERIALIZABLE     = 3;
  -    
  -    /** 
  -     * numeric constant representing the optimistic locking isolation level.
  -     */
  -    public final static int IL_OPTIMISTIC       = 4;
  -    
  -    
  -    /** 
  -     * numeric constant representing the default (i.e. uncommited read) isolation level.
  -     */
  -    public final static int IL_DEFAULT = IL_READ_UNCOMMITTED;
  -    
  -    
  -    /** 
  -     * literal constant representing the uncommited read isolation level.
  -     */
  -    public final static String LITERAL_IL_READ_UNCOMMITTED = "read-uncommitted";
  -    
  -    /** 
  -     * literal constant representing the commited read isolation level.
  -     */
  -    public final static String LITERAL_IL_READ_COMMITTED   = "read-committed";
  -    
  -    /** 
  -     * literal constant representing the repeatable read isolation level.
  -     */
  -    public final static String LITERAL_IL_REPEATABLE_READ  = "repeatable-read";
  -    
  -    /** 
  -     * literal constant representing the serializable transactions isolation level.
  -     */
  -    public final static String LITERAL_IL_SERIALIZABLE     = "serializable";
  -    
  -    /** 
  -     * literal constant representing the optimistic locking isolation level.
  -     */
  -    public final static String LITERAL_IL_OPTIMISTIC       = "optimistic";
  -    
  -    
  -    
  -}
  +
  +/**
  + * This Interface defines Isolation level constants.
  + * It contains numeric constants and literal constants
  + * representing all known isolation levels.
  + * @author Thomas Mahler
  + */
  +public interface IsolationLevels
  +{
  +    /** 
  +     * numeric constant representing the uncommited read isolation level.
  +     */
  +    public final static int IL_READ_UNCOMMITTED = 0;
  +    
  +    /** 
  +     * numeric constant representing the commited read isolation level.
  +     */
  +    public final static int IL_READ_COMMITTED   = 1;
  +    
  +    /** 
  +     * numeric constant representing the repeatable read isolation level.
  +     */
  +    public final static int IL_REPEATABLE_READ  = 2;
  +    
  +    /** 
  +     * numeric constant representing the serializable transactions isolation level.
  +     */
  +    public final static int IL_SERIALIZABLE     = 3;
  +    
  +    /** 
  +     * numeric constant representing the optimistic locking isolation level.
  +     */
  +    public final static int IL_OPTIMISTIC       = 4;
  +    
  +    
  +    /** 
  +     * numeric constant representing the default (i.e. uncommited read) isolation level.
  +     */
  +    public final static int IL_DEFAULT = IL_READ_UNCOMMITTED;
  +    
  +    
  +    /** 
  +     * literal constant representing the uncommited read isolation level.
  +     */
  +    public final static String LITERAL_IL_READ_UNCOMMITTED = "read-uncommitted";
  +    
  +    /** 
  +     * literal constant representing the commited read isolation level.
  +     */
  +    public final static String LITERAL_IL_READ_COMMITTED   = "read-committed";
  +    
  +    /** 
  +     * literal constant representing the repeatable read isolation level.
  +     */
  +    public final static String LITERAL_IL_REPEATABLE_READ  = "repeatable-read";
  +    
  +    /** 
  +     * literal constant representing the serializable transactions isolation level.
  +     */
  +    public final static String LITERAL_IL_SERIALIZABLE     = "serializable";
  +    
  +    /** 
  +     * literal constant representing the optimistic locking isolation level.
  +     */
  +    public final static String LITERAL_IL_OPTIMISTIC       = "optimistic";
  +    
  +    
  +    
  +}
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-dev-help@db.apache.org