01: package org.cougaar.qos.ResourceStatus;
02:
03: /**
04: * org/cougaar/qos/ResourceStatus/_QualifierFactoryStub.java .
05: * Generated by the IDL-to-Java compiler (portable), version "3.2"
06: * from qrs.idl
07: * Tuesday, August 7, 2007 11:57:30 AM EDT
08: */
09:
10: // simple.
11: public class _QualifierFactoryStub extends
12: org.omg.CORBA.portable.ObjectImpl implements
13: org.cougaar.qos.ResourceStatus.QualifierFactory {
14:
15: // Type-specific CORBA::Object operations
16: private static String[] __ids = { "IDL:org/cougaar/qos/ResourceStatus/QualifierFactory:1.0" };
17:
18: public String[] _ids() {
19: return (String[]) __ids.clone();
20: }
21:
22: private void readObject(java.io.ObjectInputStream s)
23: throws java.io.IOException {
24: String str = s.readUTF();
25: String[] args = null;
26: java.util.Properties props = null;
27: org.omg.CORBA.Object obj = org.omg.CORBA.ORB.init(args, props)
28: .string_to_object(str);
29: org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)
30: ._get_delegate();
31: _set_delegate(delegate);
32: }
33:
34: private void writeObject(java.io.ObjectOutputStream s)
35: throws java.io.IOException {
36: String[] args = null;
37: java.util.Properties props = null;
38: String str = org.omg.CORBA.ORB.init(args, props)
39: .object_to_string(this );
40: s.writeUTF(str);
41: }
42: } // class _QualifierFactoryStub
|