001    package org.omg.Security;
002    
003    
004    /**
005    * org/omg/Security/ChannelBindings.java .
006    * Generated by the IDL-to-Java compiler (portable), version "3.2"
007    * from /builddir/build/BUILD/geronimo-specs-1.6/geronimo-spec-corba/src/main/idl/Security.idl
008    * Monday, June 18, 2012 10:36:15 AM CEST
009    */
010    
011    public final class ChannelBindings implements org.omg.CORBA.portable.IDLEntity
012    {
013      public int initiator_addrtype = (int)0;
014      public byte initiator_address[] = null;
015      public int acceptor_addrtype = (int)0;
016      public byte acceptor_address[] = null;
017      public byte application_data[] = null;
018    
019      public ChannelBindings ()
020      {
021      } // ctor
022    
023      public ChannelBindings (int _initiator_addrtype, byte[] _initiator_address, int _acceptor_addrtype, byte[] _acceptor_address, byte[] _application_data)
024      {
025        initiator_addrtype = _initiator_addrtype;
026        initiator_address = _initiator_address;
027        acceptor_addrtype = _acceptor_addrtype;
028        acceptor_address = _acceptor_address;
029        application_data = _application_data;
030      } // ctor
031    
032    } // class ChannelBindings