1 22 package org.jboss.ejb.plugins; 23 24 import java.io.Serializable ; 25 26 38 class StatefulSessionBeanField implements Serializable  39 { 40 static final long serialVersionUID = 1396957475833266905L; 41 static final byte SESSION_CONTEXT = 0; 42 static final byte USER_TRANSACTION = 1; 43 44 byte type; 45 46 StatefulSessionBeanField(byte type) 47 { 48 this.type = type; 49 } 50 51 } 52 53 | Popular Tags |