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