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.wls;
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.XmlType;
022:
023: /**
024: * <p>Java class for ejb-ql-query complex type.
025: *
026: * <p>The following schema fragment specifies the expected content contained within this class.
027: *
028: * <pre>
029: * <complexType name="ejb-ql-query">
030: * <complexContent>
031: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
032: * <sequence>
033: * <element name="weblogic-ql" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
034: * <element name="group-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
035: * <element name="caching-name" type="{http://www.bea.com/ns/weblogic/90}caching-name" minOccurs="0"/>
036: * </sequence>
037: * </restriction>
038: * </complexContent>
039: * </complexType>
040: * </pre>
041: *
042: *
043: */
044: @XmlAccessorType(XmlAccessType.FIELD)
045: @XmlType(name="ejb-ql-query",propOrder={"weblogicQl","groupName","cachingName"})
046: public class EjbQlQuery {
047:
048: @XmlElement(name="weblogic-ql")
049: protected String weblogicQl;
050: @XmlElement(name="group-name")
051: protected String groupName;
052: @XmlElement(name="caching-name")
053: protected CachingName cachingName;
054:
055: /**
056: * Gets the value of the weblogicQl property.
057: *
058: * @return
059: * possible object is
060: * {@link String }
061: *
062: */
063: public String getWeblogicQl() {
064: return weblogicQl;
065: }
066:
067: /**
068: * Sets the value of the weblogicQl property.
069: *
070: * @param value
071: * allowed object is
072: * {@link String }
073: *
074: */
075: public void setWeblogicQl(String value) {
076: this .weblogicQl = value;
077: }
078:
079: /**
080: * Gets the value of the groupName property.
081: *
082: * @return
083: * possible object is
084: * {@link String }
085: *
086: */
087: public String getGroupName() {
088: return groupName;
089: }
090:
091: /**
092: * Sets the value of the groupName property.
093: *
094: * @param value
095: * allowed object is
096: * {@link String }
097: *
098: */
099: public void setGroupName(String value) {
100: this .groupName = value;
101: }
102:
103: /**
104: * Gets the value of the cachingName property.
105: *
106: * @return
107: * possible object is
108: * {@link CachingName }
109: *
110: */
111: public CachingName getCachingName() {
112: return cachingName;
113: }
114:
115: /**
116: * Sets the value of the cachingName property.
117: *
118: * @param value
119: * allowed object is
120: * {@link CachingName }
121: *
122: */
123: public void setCachingName(CachingName value) {
124: this.cachingName = value;
125: }
126:
127: }
|