1 Reply Latest reply on Jan 7, 2007 9:53 AM by lafr

    EJB SLSB question

    gienasek

      Hello.

      I have situation in SLSB:

      private int a;

      //remote method
      public void myMethod(){
      p1();
      ......
      ......
      }

      private void p1(){
      this.a = 1;
      }


      May I be sure that bean private variable "a" not change value during executing myMethod() ?

      thanks in advance
      gienasek