001 package org.omg.Security;
002
003
004 /**
005 * org/omg/Security/OpaqueBuffer.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/Security.idl
008 * Saturday, November 26, 2011 9:53:35 PM UTC
009 */
010
011 public final class OpaqueBuffer implements org.omg.CORBA.portable.IDLEntity
012 {
013 public byte buffer[] = null;
014 public int startpos = (int)0;
015 public int endpos = (int)0;
016
017 public OpaqueBuffer ()
018 {
019 } // ctor
020
021 public OpaqueBuffer (byte[] _buffer, int _startpos, int _endpos)
022 {
023 buffer = _buffer;
024 startpos = _startpos;
025 endpos = _endpos;
026 } // ctor
027
028 } // class OpaqueBuffer