01: package org.cougaar.qos.ResourceStatus;
02:
03: /**
04: * org/cougaar/qos/ResourceStatus/RSSSubscriberHolder.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: // to the RSS should implement this.
11: public final class RSSSubscriberHolder implements
12: org.omg.CORBA.portable.Streamable {
13: public org.cougaar.qos.ResourceStatus.RSSSubscriber value = null;
14:
15: public RSSSubscriberHolder() {
16: }
17:
18: public RSSSubscriberHolder(
19: org.cougaar.qos.ResourceStatus.RSSSubscriber initialValue) {
20: value = initialValue;
21: }
22:
23: public void _read(org.omg.CORBA.portable.InputStream i) {
24: value = org.cougaar.qos.ResourceStatus.RSSSubscriberHelper
25: .read(i);
26: }
27:
28: public void _write(org.omg.CORBA.portable.OutputStream o) {
29: org.cougaar.qos.ResourceStatus.RSSSubscriberHelper.write(o,
30: value);
31: }
32:
33: public org.omg.CORBA.TypeCode _type() {
34: return org.cougaar.qos.ResourceStatus.RSSSubscriberHelper
35: .type();
36: }
37:
38: }
|