1 51 52 package javax.activity; 53 54 import java.io.Serializable ; 55 56 public class Outcome { 57 58 private String outcomeName; 59 private Serializable extOutcome; 60 61 public Outcome(java.lang.String outcomeName, 62 java.io.Serializable extOutcome) { 63 this.outcomeName = outcomeName; 64 this.extOutcome = extOutcome; 65 } 66 67 public Outcome(java.lang.String outcomeName, 68 java.rmi.MarshalledObject extOutcome) { 69 70 } 71 72 public Outcome(java.lang.String outcomeName, 73 org.omg.CORBA.Any extOutcome) { 74 75 } 76 77 public java.lang.String getName() { 78 return this.outcomeName; 79 } 80 81 public java.io.Serializable getExtendedValue() { 82 return this.extOutcome; 83 } 84 85 public org.omg.CORBA.Any getExtendedAny() { 86 return null; 87 } 88 89 90 } 91 | Popular Tags |