[jboss-cvs] JBossCache/src-50/org/jboss/cache/pojo ...

Ben Wang bwang at jboss.com
Tue Oct 10 02:28:37 EDT 2006


  User: bwang   
  Date: 06/10/10 02:28:37

  Modified:    src-50/org/jboss/cache/pojo  InvocationContext.java
  Log:
  Make InvocationContext private for now.
  
  Revision  Changes    Path
  1.2       +5 -4      JBossCache/src-50/org/jboss/cache/pojo/InvocationContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InvocationContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/InvocationContext.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- InvocationContext.java	31 Jul 2006 05:13:24 -0000	1.1
  +++ InvocationContext.java	10 Oct 2006 06:28:37 -0000	1.2
  @@ -10,7 +10,8 @@
    * This context holds information specific to a method invocation.
    *
    * @author Ben Wang
  - * @version $Id: InvocationContext.java,v 1.1 2006/07/31 05:13:24 bwang Exp $
  + * @deprecated since 2.0. Has no use for now.
  + * @version $Id: InvocationContext.java,v 1.2 2006/10/10 06:28:37 bwang Exp $
    */
   public class InvocationContext
   {
  @@ -20,7 +21,7 @@
      /**
       * @return the current invocation context associated with the current thread.
       */
  -   public static InvocationContext getCurrent()
  +   private static InvocationContext getCurrent()
      {
         InvocationContext i = container.get();
         if (i == null)
  @@ -35,12 +36,12 @@
      {
      }
   
  -   public void setRegion(String region)
  +   private void setRegion(String region)
      {
         region_ = region;
      }
   
  -   public String getRegion()
  +   private String getRegion()
      {
         return region_;
      }
  
  
  



More information about the jboss-cvs-commits mailing list