001 package org.omg.Security;
002
003 /**
004 * Generated from IDL struct "SecAttribute".
005 *
006 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007 * @version generated at Sep 6, 2011 5:12:29 AM
008 */
009
010 public final class SecAttribute
011 implements org.omg.CORBA.portable.IDLEntity
012 {
013 public SecAttribute(){}
014 public org.omg.Security.AttributeType attribute_type;
015 public byte[] defining_authority;
016 public byte[] value;
017 public SecAttribute(org.omg.Security.AttributeType attribute_type, byte[] defining_authority, byte[] value)
018 {
019 this.attribute_type = attribute_type;
020 this.defining_authority = defining_authority;
021 this.value = value;
022 }
023 }