Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,82 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/ExtensibleFamilyHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class ExtensibleFamilyHelper
+{
+ private static String _id = "IDL:omg.org/Security/ExtensibleFamily:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, org.omg.Security.ExtensibleFamily that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static org.omg.Security.ExtensibleFamily extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ private static boolean __active = false;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ synchronized (org.omg.CORBA.TypeCode.class)
+ {
+ if (__typeCode == null)
+ {
+ if (__active)
+ {
+ return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
+ }
+ __active = true;
+ org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [2];
+ org.omg.CORBA.TypeCode _tcOf_members0 = null;
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ushort);
+ _members0[0] = new org.omg.CORBA.StructMember (
+ "family_definer",
+ _tcOf_members0,
+ null);
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ushort);
+ _members0[1] = new org.omg.CORBA.StructMember (
+ "family",
+ _tcOf_members0,
+ null);
+ __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (org.omg.Security.ExtensibleFamilyHelper.id (), "ExtensibleFamily", _members0);
+ __active = false;
+ }
+ }
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static org.omg.Security.ExtensibleFamily read (org.omg.CORBA.portable.InputStream istream)
+ {
+ org.omg.Security.ExtensibleFamily value = new org.omg.Security.ExtensibleFamily ();
+ value.family_definer = istream.read_ushort ();
+ value.family = istream.read_ushort ();
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.Security.ExtensibleFamily value)
+ {
+ ostream.write_ushort (value.family_definer);
+ ostream.write_ushort (value.family);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,38 @@
+package org.omg.Security;
+
+/**
+* org/omg/Security/ExtensibleFamilyHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class ExtensibleFamilyHolder implements org.omg.CORBA.portable.Streamable
+{
+ public org.omg.Security.ExtensibleFamily value = null;
+
+ public ExtensibleFamilyHolder ()
+ {
+ }
+
+ public ExtensibleFamilyHolder (org.omg.Security.ExtensibleFamily initialValue)
+ {
+ value = initialValue;
+ }
+
+ public void _read (org.omg.CORBA.portable.InputStream i)
+ {
+ value = org.omg.Security.ExtensibleFamilyHelper.read (i);
+ }
+
+ public void _write (org.omg.CORBA.portable.OutputStream o)
+ {
+ org.omg.Security.ExtensibleFamilyHelper.write (o, value);
+ }
+
+ public org.omg.CORBA.TypeCode _type ()
+ {
+ return org.omg.Security.ExtensibleFamilyHelper.type ();
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHolder.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHolder.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ExtensibleFamilyHolder.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/GroupId.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/GroupId.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/GroupId.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/GroupId.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,14 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/GroupId.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public interface GroupId
+{
+ public static final int value = (int)(4L);
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/GroupId.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/GroupId.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/GroupId.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Initiator.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Initiator.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Initiator.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Initiator.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,14 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/Initiator.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public interface Initiator
+{
+ public static final int value = (int)(4L);
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Initiator.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Initiator.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Initiator.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Integrity.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Integrity.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Integrity.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Integrity.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,14 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/Integrity.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public interface Integrity
+{
+ public static final short value = (short)(2);
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Integrity.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Integrity.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Integrity.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InterfaceName.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InterfaceName.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InterfaceName.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InterfaceName.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,14 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/InterfaceName.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public interface InterfaceName
+{
+ public static final int value = (int)(1L);
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InterfaceName.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InterfaceName.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InterfaceName.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/IntervalTHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/IntervalTHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/IntervalTHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/IntervalTHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,56 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/IntervalTHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class IntervalTHelper
+{
+ private static String _id = "IDL:omg.org/Security/IntervalT:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, org.omg.TimeBase.IntervalT that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static org.omg.TimeBase.IntervalT extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ __typeCode = org.omg.TimeBase.IntervalTHelper.type ();
+ __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.IntervalTHelper.id (), "IntervalT", __typeCode);
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static org.omg.TimeBase.IntervalT read (org.omg.CORBA.portable.InputStream istream)
+ {
+ org.omg.TimeBase.IntervalT value = null;
+ value = org.omg.TimeBase.IntervalTHelper.read (istream);
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.TimeBase.IntervalT value)
+ {
+ org.omg.TimeBase.IntervalTHelper.write (ostream, value);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/IntervalTHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/IntervalTHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/IntervalTHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsType.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsType.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsType.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsType.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,44 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/InvocationCredentialsType.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+
+// Credential types
+public class InvocationCredentialsType implements org.omg.CORBA.portable.IDLEntity
+{
+ private int __value;
+ private static int __size = 3;
+ private static org.omg.Security.InvocationCredentialsType[] __array = new org.omg.Security.InvocationCredentialsType [__size];
+
+ public static final int _SecOwnCredentials = 0;
+ public static final org.omg.Security.InvocationCredentialsType SecOwnCredentials = new org.omg.Security.InvocationCredentialsType(_SecOwnCredentials);
+ public static final int _SecReceivedCredentials = 1;
+ public static final org.omg.Security.InvocationCredentialsType SecReceivedCredentials = new org.omg.Security.InvocationCredentialsType(_SecReceivedCredentials);
+ public static final int _SecTargetCredentials = 2;
+ public static final org.omg.Security.InvocationCredentialsType SecTargetCredentials = new org.omg.Security.InvocationCredentialsType(_SecTargetCredentials);
+
+ public int value ()
+ {
+ return __value;
+ }
+
+ public static org.omg.Security.InvocationCredentialsType from_int (int value)
+ {
+ if (value >= 0 && value < __size)
+ return __array[value];
+ else
+ throw new org.omg.CORBA.BAD_PARAM ();
+ }
+
+ protected InvocationCredentialsType (int value)
+ {
+ __value = value;
+ __array[__value] = this;
+ }
+} // class InvocationCredentialsType
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsType.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsType.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsType.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,55 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/InvocationCredentialsTypeHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+
+// Credential types
+abstract public class InvocationCredentialsTypeHelper
+{
+ private static String _id = "IDL:omg.org/Security/InvocationCredentialsType:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, org.omg.Security.InvocationCredentialsType that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static org.omg.Security.InvocationCredentialsType extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ __typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (org.omg.Security.InvocationCredentialsTypeHelper.id (), "InvocationCredentialsType", new String[] { "SecOwnCredentials", "SecReceivedCredentials", "SecTargetCredentials"} );
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static org.omg.Security.InvocationCredentialsType read (org.omg.CORBA.portable.InputStream istream)
+ {
+ return org.omg.Security.InvocationCredentialsType.from_int (istream.read_long ());
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.Security.InvocationCredentialsType value)
+ {
+ ostream.write_long (value.value ());
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,40 @@
+package org.omg.Security;
+
+/**
+* org/omg/Security/InvocationCredentialsTypeHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+
+// Credential types
+public final class InvocationCredentialsTypeHolder implements org.omg.CORBA.portable.Streamable
+{
+ public org.omg.Security.InvocationCredentialsType value = null;
+
+ public InvocationCredentialsTypeHolder ()
+ {
+ }
+
+ public InvocationCredentialsTypeHolder (org.omg.Security.InvocationCredentialsType initialValue)
+ {
+ value = initialValue;
+ }
+
+ public void _read (org.omg.CORBA.portable.InputStream i)
+ {
+ value = org.omg.Security.InvocationCredentialsTypeHelper.read (i);
+ }
+
+ public void _write (org.omg.CORBA.portable.OutputStream o)
+ {
+ org.omg.Security.InvocationCredentialsTypeHelper.write (o, value);
+ }
+
+ public org.omg.CORBA.TypeCode _type ()
+ {
+ return org.omg.Security.InvocationCredentialsTypeHelper.type ();
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHolder.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHolder.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/InvocationCredentialsTypeHolder.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptions.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptions.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptions.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptions.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,26 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/MechandOptions.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class MechandOptions implements org.omg.CORBA.portable.IDLEntity
+{
+ public String mechanism_type = null;
+ public short options_supported = (short)0;
+
+ public MechandOptions ()
+ {
+ } // ctor
+
+ public MechandOptions (String _mechanism_type, short _options_supported)
+ {
+ mechanism_type = _mechanism_type;
+ options_supported = _options_supported;
+ } // ctor
+
+} // class MechandOptions
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptions.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptions.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptions.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,84 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/MechandOptionsHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class MechandOptionsHelper
+{
+ private static String _id = "IDL:omg.org/Security/MechandOptions:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, org.omg.Security.MechandOptions that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static org.omg.Security.MechandOptions extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ private static boolean __active = false;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ synchronized (org.omg.CORBA.TypeCode.class)
+ {
+ if (__typeCode == null)
+ {
+ if (__active)
+ {
+ return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
+ }
+ __active = true;
+ org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [2];
+ org.omg.CORBA.TypeCode _tcOf_members0 = null;
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().create_string_tc (0);
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.MechanismTypeHelper.id (), "MechanismType", _tcOf_members0);
+ _members0[0] = new org.omg.CORBA.StructMember (
+ "mechanism_type",
+ _tcOf_members0,
+ null);
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ushort);
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.AssociationOptionsHelper.id (), "AssociationOptions", _tcOf_members0);
+ _members0[1] = new org.omg.CORBA.StructMember (
+ "options_supported",
+ _tcOf_members0,
+ null);
+ __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (org.omg.Security.MechandOptionsHelper.id (), "MechandOptions", _members0);
+ __active = false;
+ }
+ }
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static org.omg.Security.MechandOptions read (org.omg.CORBA.portable.InputStream istream)
+ {
+ org.omg.Security.MechandOptions value = new org.omg.Security.MechandOptions ();
+ value.mechanism_type = istream.read_string ();
+ value.options_supported = istream.read_ushort ();
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.Security.MechandOptions value)
+ {
+ ostream.write_string (value.mechanism_type);
+ ostream.write_ushort (value.options_supported);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,38 @@
+package org.omg.Security;
+
+/**
+* org/omg/Security/MechandOptionsHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class MechandOptionsHolder implements org.omg.CORBA.portable.Streamable
+{
+ public org.omg.Security.MechandOptions value = null;
+
+ public MechandOptionsHolder ()
+ {
+ }
+
+ public MechandOptionsHolder (org.omg.Security.MechandOptions initialValue)
+ {
+ value = initialValue;
+ }
+
+ public void _read (org.omg.CORBA.portable.InputStream i)
+ {
+ value = org.omg.Security.MechandOptionsHelper.read (i);
+ }
+
+ public void _write (org.omg.CORBA.portable.OutputStream o)
+ {
+ org.omg.Security.MechandOptionsHelper.write (o, value);
+ }
+
+ public org.omg.CORBA.TypeCode _type ()
+ {
+ return org.omg.Security.MechandOptionsHelper.type ();
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHolder.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHolder.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsHolder.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,62 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/MechandOptionsListHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class MechandOptionsListHelper
+{
+ private static String _id = "IDL:omg.org/Security/MechandOptionsList:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, org.omg.Security.MechandOptions[] that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static org.omg.Security.MechandOptions[] extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ __typeCode = org.omg.Security.MechandOptionsHelper.type ();
+ __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
+ __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.MechandOptionsListHelper.id (), "MechandOptionsList", __typeCode);
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static org.omg.Security.MechandOptions[] read (org.omg.CORBA.portable.InputStream istream)
+ {
+ org.omg.Security.MechandOptions value[] = null;
+ int _len0 = istream.read_long ();
+ value = new org.omg.Security.MechandOptions[_len0];
+ for (int _o1 = 0;_o1 < value.length; ++_o1)
+ value[_o1] = org.omg.Security.MechandOptionsHelper.read (istream);
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.Security.MechandOptions[] value)
+ {
+ ostream.write_long (value.length);
+ for (int _i0 = 0;_i0 < value.length; ++_i0)
+ org.omg.Security.MechandOptionsHelper.write (ostream, value[_i0]);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,39 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/MechandOptionsListHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class MechandOptionsListHolder implements org.omg.CORBA.portable.Streamable
+{
+ public org.omg.Security.MechandOptions value[] = null;
+
+ public MechandOptionsListHolder ()
+ {
+ }
+
+ public MechandOptionsListHolder (org.omg.Security.MechandOptions[] initialValue)
+ {
+ value = initialValue;
+ }
+
+ public void _read (org.omg.CORBA.portable.InputStream i)
+ {
+ value = org.omg.Security.MechandOptionsListHelper.read (i);
+ }
+
+ public void _write (org.omg.CORBA.portable.OutputStream o)
+ {
+ org.omg.Security.MechandOptionsListHelper.write (o, value);
+ }
+
+ public org.omg.CORBA.TypeCode _type ()
+ {
+ return org.omg.Security.MechandOptionsListHelper.type ();
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHolder.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHolder.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechandOptionsListHolder.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,58 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/MechanismTypeHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+
+// security association mechanism type
+abstract public class MechanismTypeHelper
+{
+ private static String _id = "IDL:omg.org/Security/MechanismType:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, String that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static String extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ __typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
+ __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.MechanismTypeHelper.id (), "MechanismType", __typeCode);
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static String read (org.omg.CORBA.portable.InputStream istream)
+ {
+ String value = null;
+ value = istream.read_string ();
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, String value)
+ {
+ ostream.write_string (value);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,63 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/MechanismTypeListHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class MechanismTypeListHelper
+{
+ private static String _id = "IDL:omg.org/Security/MechanismTypeList:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, String[] that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static String[] extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ __typeCode = org.omg.CORBA.ORB.init ().create_string_tc (0);
+ __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.MechanismTypeHelper.id (), "MechanismType", __typeCode);
+ __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
+ __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.MechanismTypeListHelper.id (), "MechanismTypeList", __typeCode);
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static String[] read (org.omg.CORBA.portable.InputStream istream)
+ {
+ String value[] = null;
+ int _len0 = istream.read_long ();
+ value = new String[_len0];
+ for (int _o1 = 0;_o1 < value.length; ++_o1)
+ value[_o1] = org.omg.Security.MechanismTypeHelper.read (istream);
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, String[] value)
+ {
+ ostream.write_long (value.length);
+ for (int _i0 = 0;_i0 < value.length; ++_i0)
+ org.omg.Security.MechanismTypeHelper.write (ostream, value[_i0]);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,39 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/MechanismTypeListHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class MechanismTypeListHolder implements org.omg.CORBA.portable.Streamable
+{
+ public String value[] = null;
+
+ public MechanismTypeListHolder ()
+ {
+ }
+
+ public MechanismTypeListHolder (String[] initialValue)
+ {
+ value = initialValue;
+ }
+
+ public void _read (org.omg.CORBA.portable.InputStream i)
+ {
+ value = org.omg.Security.MechanismTypeListHelper.read (i);
+ }
+
+ public void _write (org.omg.CORBA.portable.OutputStream o)
+ {
+ org.omg.Security.MechanismTypeListHelper.write (o, value);
+ }
+
+ public org.omg.CORBA.TypeCode _type ()
+ {
+ return org.omg.Security.MechanismTypeListHelper.type ();
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHolder.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHolder.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/MechanismTypeListHolder.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoDelegation.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoDelegation.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoDelegation.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoDelegation.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,14 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/NoDelegation.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public interface NoDelegation
+{
+ public static final short value = (short)(128);
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoDelegation.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoDelegation.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoDelegation.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoProtection.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoProtection.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoProtection.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoProtection.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,14 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/NoProtection.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public interface NoProtection
+{
+ public static final short value = (short)(1);
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoProtection.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoProtection.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NoProtection.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiation.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiation.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiation.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiation.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,14 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/NonRepudiation.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public interface NonRepudiation
+{
+ public static final int value = (int)(3L);
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiation.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiation.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiation.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiationId.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiationId.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiationId.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiationId.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,14 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/NonRepudiationId.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public interface NonRepudiationId
+{
+ public static final int value = (int)(3L);
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiationId.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiationId.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/NonRepudiationId.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,60 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/OIDHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class OIDHelper
+{
+ private static String _id = "IDL:omg.org/Security/OID:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, byte[] that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static byte[] extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ __typeCode = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_octet);
+ __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
+ __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.OIDHelper.id (), "OID", __typeCode);
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static byte[] read (org.omg.CORBA.portable.InputStream istream)
+ {
+ byte value[] = null;
+ int _len0 = istream.read_long ();
+ value = new byte[_len0];
+ istream.read_octet_array (value, 0, _len0);
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, byte[] value)
+ {
+ ostream.write_long (value.length);
+ ostream.write_octet_array (value, 0, value.length);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,39 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/OIDHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class OIDHolder implements org.omg.CORBA.portable.Streamable
+{
+ public byte value[] = null;
+
+ public OIDHolder ()
+ {
+ }
+
+ public OIDHolder (byte[] initialValue)
+ {
+ value = initialValue;
+ }
+
+ public void _read (org.omg.CORBA.portable.InputStream i)
+ {
+ value = org.omg.Security.OIDHelper.read (i);
+ }
+
+ public void _write (org.omg.CORBA.portable.OutputStream o)
+ {
+ org.omg.Security.OIDHelper.write (o, value);
+ }
+
+ public org.omg.CORBA.TypeCode _type ()
+ {
+ return org.omg.Security.OIDHelper.type ();
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHolder.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHolder.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDHolder.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,64 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/OIDListHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class OIDListHelper
+{
+ private static String _id = "IDL:omg.org/Security/OIDList:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, byte[][] that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static byte[][] extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ __typeCode = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_octet);
+ __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
+ __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.OIDHelper.id (), "OID", __typeCode);
+ __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
+ __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.OIDListHelper.id (), "OIDList", __typeCode);
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static byte[][] read (org.omg.CORBA.portable.InputStream istream)
+ {
+ byte value[][] = null;
+ int _len0 = istream.read_long ();
+ value = new byte[_len0][];
+ for (int _o1 = 0;_o1 < value.length; ++_o1)
+ value[_o1] = org.omg.Security.OIDHelper.read (istream);
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, byte[][] value)
+ {
+ ostream.write_long (value.length);
+ for (int _i0 = 0;_i0 < value.length; ++_i0)
+ org.omg.Security.OIDHelper.write (ostream, value[_i0]);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,39 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/OIDListHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class OIDListHolder implements org.omg.CORBA.portable.Streamable
+{
+ public byte value[][] = null;
+
+ public OIDListHolder ()
+ {
+ }
+
+ public OIDListHolder (byte[][] initialValue)
+ {
+ value = initialValue;
+ }
+
+ public void _read (org.omg.CORBA.portable.InputStream i)
+ {
+ value = org.omg.Security.OIDListHelper.read (i);
+ }
+
+ public void _write (org.omg.CORBA.portable.OutputStream o)
+ {
+ org.omg.Security.OIDListHelper.write (o, value);
+ }
+
+ public org.omg.CORBA.TypeCode _type ()
+ {
+ return org.omg.Security.OIDListHelper.type ();
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHolder.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHolder.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OIDListHolder.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ObjectRef.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ObjectRef.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ObjectRef.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ObjectRef.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,14 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/ObjectRef.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public interface ObjectRef
+{
+ public static final int value = (int)(2L);
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ObjectRef.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ObjectRef.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/ObjectRef.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBuffer.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBuffer.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBuffer.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBuffer.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,28 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/OpaqueBuffer.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class OpaqueBuffer implements org.omg.CORBA.portable.IDLEntity
+{
+ public byte buffer[] = null;
+ public int startpos = (int)0;
+ public int endpos = (int)0;
+
+ public OpaqueBuffer ()
+ {
+ } // ctor
+
+ public OpaqueBuffer (byte[] _buffer, int _startpos, int _endpos)
+ {
+ buffer = _buffer;
+ startpos = _startpos;
+ endpos = _endpos;
+ } // ctor
+
+} // class OpaqueBuffer
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBuffer.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBuffer.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBuffer.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,91 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/OpaqueBufferHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class OpaqueBufferHelper
+{
+ private static String _id = "IDL:omg.org/Security/OpaqueBuffer:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, org.omg.Security.OpaqueBuffer that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static org.omg.Security.OpaqueBuffer extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ private static boolean __active = false;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ synchronized (org.omg.CORBA.TypeCode.class)
+ {
+ if (__typeCode == null)
+ {
+ if (__active)
+ {
+ return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
+ }
+ __active = true;
+ org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [3];
+ org.omg.CORBA.TypeCode _tcOf_members0 = null;
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_octet);
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().create_sequence_tc (0, _tcOf_members0);
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.OpaqueHelper.id (), "Opaque", _tcOf_members0);
+ _members0[0] = new org.omg.CORBA.StructMember (
+ "buffer",
+ _tcOf_members0,
+ null);
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ulong);
+ _members0[1] = new org.omg.CORBA.StructMember (
+ "startpos",
+ _tcOf_members0,
+ null);
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ulong);
+ _members0[2] = new org.omg.CORBA.StructMember (
+ "endpos",
+ _tcOf_members0,
+ null);
+ __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (org.omg.Security.OpaqueBufferHelper.id (), "OpaqueBuffer", _members0);
+ __active = false;
+ }
+ }
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static org.omg.Security.OpaqueBuffer read (org.omg.CORBA.portable.InputStream istream)
+ {
+ org.omg.Security.OpaqueBuffer value = new org.omg.Security.OpaqueBuffer ();
+ value.buffer = org.omg.Security.OpaqueHelper.read (istream);
+ value.startpos = istream.read_ulong ();
+ value.endpos = istream.read_ulong ();
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.Security.OpaqueBuffer value)
+ {
+ org.omg.Security.OpaqueHelper.write (ostream, value.buffer);
+ ostream.write_ulong (value.startpos);
+ ostream.write_ulong (value.endpos);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,38 @@
+package org.omg.Security;
+
+/**
+* org/omg/Security/OpaqueBufferHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class OpaqueBufferHolder implements org.omg.CORBA.portable.Streamable
+{
+ public org.omg.Security.OpaqueBuffer value = null;
+
+ public OpaqueBufferHolder ()
+ {
+ }
+
+ public OpaqueBufferHolder (org.omg.Security.OpaqueBuffer initialValue)
+ {
+ value = initialValue;
+ }
+
+ public void _read (org.omg.CORBA.portable.InputStream i)
+ {
+ value = org.omg.Security.OpaqueBufferHelper.read (i);
+ }
+
+ public void _write (org.omg.CORBA.portable.OutputStream o)
+ {
+ org.omg.Security.OpaqueBufferHelper.write (o, value);
+ }
+
+ public org.omg.CORBA.TypeCode _type ()
+ {
+ return org.omg.Security.OpaqueBufferHelper.type ();
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHolder.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHolder.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueBufferHolder.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,60 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/OpaqueHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class OpaqueHelper
+{
+ private static String _id = "IDL:omg.org/Security/Opaque:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, byte[] that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static byte[] extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ __typeCode = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_octet);
+ __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode);
+ __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.OpaqueHelper.id (), "Opaque", __typeCode);
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static byte[] read (org.omg.CORBA.portable.InputStream istream)
+ {
+ byte value[] = null;
+ int _len0 = istream.read_long ();
+ value = new byte[_len0];
+ istream.read_octet_array (value, 0, _len0);
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, byte[] value)
+ {
+ ostream.write_long (value.length);
+ ostream.write_octet_array (value, 0, value.length);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,39 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/OpaqueHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class OpaqueHolder implements org.omg.CORBA.portable.Streamable
+{
+ public byte value[] = null;
+
+ public OpaqueHolder ()
+ {
+ }
+
+ public OpaqueHolder (byte[] initialValue)
+ {
+ value = initialValue;
+ }
+
+ public void _read (org.omg.CORBA.portable.InputStream i)
+ {
+ value = org.omg.Security.OpaqueHelper.read (i);
+ }
+
+ public void _write (org.omg.CORBA.portable.OutputStream o)
+ {
+ org.omg.Security.OpaqueHelper.write (o, value);
+ }
+
+ public org.omg.CORBA.TypeCode _type ()
+ {
+ return org.omg.Security.OpaqueHelper.type ();
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHolder.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHolder.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OpaqueHolder.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Operation.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Operation.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Operation.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Operation.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,14 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/Operation.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public interface Operation
+{
+ public static final int value = (int)(3L);
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Operation.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Operation.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/Operation.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPair.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPair.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPair.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPair.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,26 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/OptionsDirectionPair.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class OptionsDirectionPair implements org.omg.CORBA.portable.IDLEntity
+{
+ public short options = (short)0;
+ public org.omg.Security.CommunicationDirection direction = null;
+
+ public OptionsDirectionPair ()
+ {
+ } // ctor
+
+ public OptionsDirectionPair (short _options, org.omg.Security.CommunicationDirection _direction)
+ {
+ options = _options;
+ direction = _direction;
+ } // ctor
+
+} // class OptionsDirectionPair
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPair.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPair.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPair.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHelper.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHelper.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHelper.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHelper.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,83 @@
+package org.omg.Security;
+
+
+/**
+* org/omg/Security/OptionsDirectionPairHelper.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+abstract public class OptionsDirectionPairHelper
+{
+ private static String _id = "IDL:omg.org/Security/OptionsDirectionPair:1.0";
+
+ public static void insert (org.omg.CORBA.Any a, org.omg.Security.OptionsDirectionPair that)
+ {
+ org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
+ a.type (type ());
+ write (out, that);
+ a.read_value (out.create_input_stream (), type ());
+ }
+
+ public static org.omg.Security.OptionsDirectionPair extract (org.omg.CORBA.Any a)
+ {
+ return read (a.create_input_stream ());
+ }
+
+ private static org.omg.CORBA.TypeCode __typeCode = null;
+ private static boolean __active = false;
+ synchronized public static org.omg.CORBA.TypeCode type ()
+ {
+ if (__typeCode == null)
+ {
+ synchronized (org.omg.CORBA.TypeCode.class)
+ {
+ if (__typeCode == null)
+ {
+ if (__active)
+ {
+ return org.omg.CORBA.ORB.init().create_recursive_tc ( _id );
+ }
+ __active = true;
+ org.omg.CORBA.StructMember[] _members0 = new org.omg.CORBA.StructMember [2];
+ org.omg.CORBA.TypeCode _tcOf_members0 = null;
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_ushort);
+ _tcOf_members0 = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.Security.AssociationOptionsHelper.id (), "AssociationOptions", _tcOf_members0);
+ _members0[0] = new org.omg.CORBA.StructMember (
+ "options",
+ _tcOf_members0,
+ null);
+ _tcOf_members0 = org.omg.Security.CommunicationDirectionHelper.type ();
+ _members0[1] = new org.omg.CORBA.StructMember (
+ "direction",
+ _tcOf_members0,
+ null);
+ __typeCode = org.omg.CORBA.ORB.init ().create_struct_tc (org.omg.Security.OptionsDirectionPairHelper.id (), "OptionsDirectionPair", _members0);
+ __active = false;
+ }
+ }
+ }
+ return __typeCode;
+ }
+
+ public static String id ()
+ {
+ return _id;
+ }
+
+ public static org.omg.Security.OptionsDirectionPair read (org.omg.CORBA.portable.InputStream istream)
+ {
+ org.omg.Security.OptionsDirectionPair value = new org.omg.Security.OptionsDirectionPair ();
+ value.options = istream.read_ushort ();
+ value.direction = org.omg.Security.CommunicationDirectionHelper.read (istream);
+ return value;
+ }
+
+ public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.Security.OptionsDirectionPair value)
+ {
+ ostream.write_ushort (value.options);
+ org.omg.Security.CommunicationDirectionHelper.write (ostream, value.direction);
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHelper.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHelper.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHelper.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHolder.java
URL: http://svn.apache.org/viewvc/geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHolder.java?rev=899128&view=auto
==============================================================================
--- geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHolder.java (added)
+++ geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHolder.java Thu Jan 14 09:15:56 2010
@@ -0,0 +1,38 @@
+package org.omg.Security;
+
+/**
+* org/omg/Security/OptionsDirectionPairHolder.java .
+* Error reading Messages File.
+* Error reading Messages File.
+* Thursday, January 14, 2010 1:08:58 AM PST
+*/
+
+public final class OptionsDirectionPairHolder implements org.omg.CORBA.portable.Streamable
+{
+ public org.omg.Security.OptionsDirectionPair value = null;
+
+ public OptionsDirectionPairHolder ()
+ {
+ }
+
+ public OptionsDirectionPairHolder (org.omg.Security.OptionsDirectionPair initialValue)
+ {
+ value = initialValue;
+ }
+
+ public void _read (org.omg.CORBA.portable.InputStream i)
+ {
+ value = org.omg.Security.OptionsDirectionPairHelper.read (i);
+ }
+
+ public void _write (org.omg.CORBA.portable.OutputStream o)
+ {
+ org.omg.Security.OptionsDirectionPairHelper.write (o, value);
+ }
+
+ public org.omg.CORBA.TypeCode _type ()
+ {
+ return org.omg.Security.OptionsDirectionPairHelper.type ();
+ }
+
+}
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHolder.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHolder.java
------------------------------------------------------------------------------
svn:keywords = Date Revision
Propchange: geronimo/yoko/trunk/yoko-spec-corba/src/main/generated-sources/idl/org/omg/Security/OptionsDirectionPairHolder.java
------------------------------------------------------------------------------
svn:mime-type = text/plain
|