01: /*
02: * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.monitoring.statistics;
06:
07: import javax.management.j2ee.statistics.BoundaryStatistic;
08:
09: public class BoundaryStatisticImpl extends StatisticImpl implements
10: BoundaryStatistic {
11: public long getLowerBound() {
12: return lowerBound;
13: }
14:
15: public void setLowerBound(long lowerBound) {
16: this .lowerBound = lowerBound;
17: }
18:
19: public long getUpperBound() {
20: return upperBound;
21: }
22:
23: public void setUpperBound(long upperBound) {
24: this .upperBound = upperBound;
25: }
26:
27: private long lowerBound;
28: private long upperBound;
29: }
|