01: package org.cougaar.qos.ResourceStatus;
02:
03: /**
04: * org/cougaar/qos/ResourceStatus/QualifierPOATie.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: public class QualifierPOATie extends QualifierPOA {
11:
12: // Constructors
13:
14: public QualifierPOATie(
15: org.cougaar.qos.ResourceStatus.QualifierOperations delegate) {
16: this ._impl = delegate;
17: }
18:
19: public QualifierPOATie(
20: org.cougaar.qos.ResourceStatus.QualifierOperations delegate,
21: org.omg.PortableServer.POA poa) {
22: this ._impl = delegate;
23: this ._poa = poa;
24: }
25:
26: public org.cougaar.qos.ResourceStatus.QualifierOperations _delegate() {
27: return this ._impl;
28: }
29:
30: public void _delegate(
31: org.cougaar.qos.ResourceStatus.QualifierOperations delegate) {
32: this ._impl = delegate;
33: }
34:
35: public org.omg.PortableServer.POA _default_POA() {
36: if (_poa != null) {
37: return _poa;
38: } else {
39: return super ._default_POA();
40: }
41: }
42:
43: public void getAttribute(
44: String attribute_name,
45: org.cougaar.qos.ResourceStatus.data_valueHolder attribute_value)
46: throws org.cougaar.qos.ResourceStatus.NoSuchAttributeException,
47: org.cougaar.qos.ResourceStatus.BadAttributeValueException {
48: _impl.getAttribute(attribute_name, attribute_value);
49: } // getAttribute
50:
51: public void setAttribute(String attribute_name,
52: org.cougaar.qos.ResourceStatus.data_value attrobute_value)
53: throws org.cougaar.qos.ResourceStatus.NoSuchAttributeException,
54: org.cougaar.qos.ResourceStatus.BadAttributeValueException {
55: _impl.setAttribute(attribute_name, attrobute_value);
56: } // setAttribute
57:
58: private org.cougaar.qos.ResourceStatus.QualifierOperations _impl;
59: private org.omg.PortableServer.POA _poa;
60:
61: } // class QualifierPOATie
|