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.XmlAttribute;
021: import javax.xml.bind.annotation.XmlID;
022: import javax.xml.bind.annotation.XmlType;
023: import javax.xml.bind.annotation.XmlValue;
024: import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
025: import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
026:
027: /**
028: * This element was introduced in the 9.0.1 version of
029: * WebLogic Server. It should not be used in instance documents that may
030: * be consumed by prior WebLogic Server versions
031: *
032: * <p>Java class for distributed-destination-connection complex type.
033: *
034: * <p>The following schema fragment specifies the expected content contained within this class.
035: *
036: * <pre>
037: * <complexType name="distributed-destination-connection">
038: * <simpleContent>
039: * <extension base="<http://www.w3.org/2001/XMLSchema>string">
040: * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
041: * </extension>
042: * </simpleContent>
043: * </complexType>
044: * </pre>
045: *
046: *
047: */
048: @XmlAccessorType(XmlAccessType.FIELD)
049: @XmlType(name="distributed-destination-connection",propOrder={"value"})
050: public class DistributedDestinationConnection {
051:
052: @XmlValue
053: protected String value;
054: @XmlAttribute
055: @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
056: @XmlID
057: protected String id;
058:
059: /**
060: * Gets the value of the value property.
061: *
062: * @return
063: * possible object is
064: * {@link String }
065: *
066: */
067: public String getValue() {
068: return value;
069: }
070:
071: /**
072: * Sets the value of the value property.
073: *
074: * @param value
075: * allowed object is
076: * {@link String }
077: *
078: */
079: public void setValue(String value) {
080: this .value = value;
081: }
082:
083: /**
084: * Gets the value of the id property.
085: *
086: * @return
087: * possible object is
088: * {@link String }
089: *
090: */
091: public String getId() {
092: return id;
093: }
094:
095: /**
096: * Sets the value of the id property.
097: *
098: * @param value
099: * allowed object is
100: * {@link String }
101: *
102: */
103: public void setId(String value) {
104: this.id = value;
105: }
106:
107: }
|