01: package org.cougaar.qos.ResourceStatus;
02:
03: /**
04: * org/cougaar/qos/ResourceStatus/RSSSubscriberPOATie.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 class RSSSubscriberPOATie extends RSSSubscriberPOA {
12:
13: // Constructors
14:
15: public RSSSubscriberPOATie(
16: org.cougaar.qos.ResourceStatus.RSSSubscriberOperations delegate) {
17: this ._impl = delegate;
18: }
19:
20: public RSSSubscriberPOATie(
21: org.cougaar.qos.ResourceStatus.RSSSubscriberOperations delegate,
22: org.omg.PortableServer.POA poa) {
23: this ._impl = delegate;
24: this ._poa = poa;
25: }
26:
27: public org.cougaar.qos.ResourceStatus.RSSSubscriberOperations _delegate() {
28: return this ._impl;
29: }
30:
31: public void _delegate(
32: org.cougaar.qos.ResourceStatus.RSSSubscriberOperations delegate) {
33: this ._impl = delegate;
34: }
35:
36: public org.omg.PortableServer.POA _default_POA() {
37: if (_poa != null) {
38: return _poa;
39: } else {
40: return super ._default_POA();
41: }
42: }
43:
44: public void dataUpdate(int callback_id,
45: org.cougaar.qos.ResourceStatus.DataValue value) {
46: _impl.dataUpdate(callback_id, value);
47: } // dataUpdate
48:
49: private org.cougaar.qos.ResourceStatus.RSSSubscriberOperations _impl;
50: private org.omg.PortableServer.POA _poa;
51:
52: } // class RSSSubscriberPOATie
|