001    package org.omg.CosTransactions;
002    
003    
004    /**
005    * org/omg/CosTransactions/PropagationContext.java .
006    * Generated by the IDL-to-Java compiler (portable), version "3.2"
007    * from /home/iurt/rpm/BUILD/geronimo-spec-corba/src/main/idl/CosTransactions.idl
008    * Saturday, November 26, 2011 9:53:36 PM UTC
009    */
010    
011    public final class PropagationContext implements org.omg.CORBA.portable.IDLEntity
012    {
013      public int timeout = (int)0;
014      public org.omg.CosTransactions.TransIdentity current = null;
015      public org.omg.CosTransactions.TransIdentity parents[] = null;
016      public org.omg.CORBA.Any implementation_specific_data = null;
017    
018      public PropagationContext ()
019      {
020      } // ctor
021    
022      public PropagationContext (int _timeout, org.omg.CosTransactions.TransIdentity _current, org.omg.CosTransactions.TransIdentity[] _parents, org.omg.CORBA.Any _implementation_specific_data)
023      {
024        timeout = _timeout;
025        current = _current;
026        parents = _parents;
027        implementation_specific_data = _implementation_specific_data;
028      } // ctor
029    
030    } // class PropagationContext