001: /**
002: * Licensed to the Apache Software Foundation (ASF) under one or more
003: * contributor license agreements. See the NOTICE file distributed with
004: * this work for additional information regarding copyright ownership.
005: * The ASF licenses this file to You under the Apache License, Version 2.0
006: * (the "License"); you may not use this file except in compliance with
007: * the License. You may obtain a copy of the License at
008: *
009: * http://www.apache.org/licenses/LICENSE-2.0
010: *
011: * Unless required by applicable law or agreed to in writing, software
012: * distributed under the License is distributed on an "AS IS" BASIS,
013: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014: * See the License for the specific language governing permissions and
015: * limitations under the License.
016: */package org.apache.openejb.jee.jba;
017:
018: import javax.xml.bind.annotation.XmlAccessType;
019: import javax.xml.bind.annotation.XmlAccessorType;
020: import javax.xml.bind.annotation.XmlElement;
021: import javax.xml.bind.annotation.XmlRootElement;
022: import javax.xml.bind.annotation.XmlType;
023:
024: /**
025: *
026: */
027: @XmlAccessorType(XmlAccessType.FIELD)
028: @XmlType(name="",propOrder={"minimumSize","maximumSize","strictMaximumSize","strictTimeout"})
029: @XmlRootElement(name="container-pool-conf")
030: public class ContainerPoolConf {
031:
032: @XmlElement(name="MinimumSize")
033: protected String minimumSize;
034: @XmlElement(name="MaximumSize")
035: protected String maximumSize;
036: protected String strictMaximumSize;
037: protected String strictTimeout;
038:
039: /**
040: * Gets the value of the minimumSize property.
041: *
042: * @return
043: * possible object is
044: * {@link String }
045: *
046: */
047: public String getMinimumSize() {
048: return minimumSize;
049: }
050:
051: /**
052: * Sets the value of the minimumSize property.
053: *
054: * @param value
055: * allowed object is
056: * {@link String }
057: *
058: */
059: public void setMinimumSize(String value) {
060: this .minimumSize = value;
061: }
062:
063: /**
064: * Gets the value of the maximumSize property.
065: *
066: * @return
067: * possible object is
068: * {@link String }
069: *
070: */
071: public String getMaximumSize() {
072: return maximumSize;
073: }
074:
075: /**
076: * Sets the value of the maximumSize property.
077: *
078: * @param value
079: * allowed object is
080: * {@link String }
081: *
082: */
083: public void setMaximumSize(String value) {
084: this .maximumSize = value;
085: }
086:
087: /**
088: * Gets the value of the strictMaximumSize property.
089: *
090: * @return
091: * possible object is
092: * {@link String }
093: *
094: */
095: public String getStrictMaximumSize() {
096: return strictMaximumSize;
097: }
098:
099: /**
100: * Sets the value of the strictMaximumSize property.
101: *
102: * @param value
103: * allowed object is
104: * {@link String }
105: *
106: */
107: public void setStrictMaximumSize(String value) {
108: this .strictMaximumSize = value;
109: }
110:
111: /**
112: * Gets the value of the strictTimeout property.
113: *
114: * @return
115: * possible object is
116: * {@link String }
117: *
118: */
119: public String getStrictTimeout() {
120: return strictTimeout;
121: }
122:
123: /**
124: * Sets the value of the strictTimeout property.
125: *
126: * @param value
127: * allowed object is
128: * {@link String }
129: *
130: */
131: public void setStrictTimeout(String value) {
132: this.strictTimeout = value;
133: }
134:
135: }
|