001 package org.omg.Security;
002
003
004 /**
005 * org/omg/Security/SecAttribute.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 SecAttribute implements org.omg.CORBA.portable.IDLEntity
012 {
013 public org.omg.Security.AttributeType attribute_type = null;
014 public byte defining_authority[] = null;
015 public byte value[] = null;
016
017 public SecAttribute ()
018 {
019 } // ctor
020
021 public SecAttribute (org.omg.Security.AttributeType _attribute_type, byte[] _defining_authority, byte[] _value)
022 {
023 attribute_type = _attribute_type;
024 defining_authority = _defining_authority;
025 value = _value;
026 } // ctor
027
028 } // class SecAttribute