001    package org.omg.CosTransactions;
002    
003    /**
004     * Generated from IDL struct "PropagationContext".
005     *
006     * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007     * @version generated at Sep 22, 2012 10:58:03 AM
008     */
009    
010    public final class PropagationContext
011            implements org.omg.CORBA.portable.IDLEntity
012    {
013            public PropagationContext(){}
014            public int timeout;
015            public org.omg.CosTransactions.TransIdentity current;
016            public org.omg.CosTransactions.TransIdentity[] parents;
017            public org.omg.CORBA.Any implementation_specific_data;
018            public PropagationContext(int timeout, org.omg.CosTransactions.TransIdentity current, org.omg.CosTransactions.TransIdentity[] parents, org.omg.CORBA.Any implementation_specific_data)
019            {
020                    this.timeout = timeout;
021                    this.current = current;
022                    this.parents = parents;
023                    this.implementation_specific_data = implementation_specific_data;
024            }
025    }