1 package javax.sip; 2 3 public enum TransactionState { 4 CALLING, 5 TRYING, 6 PROCEEDING, 7 COMPLETED, 8 CONFIRMED, 9 TERMINATED; 10 } 11