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 */
017 package org.apache.camel.model;
018
019 import javax.xml.bind.annotation.XmlAccessType;
020 import javax.xml.bind.annotation.XmlAccessorType;
021 import javax.xml.bind.annotation.XmlAttribute;
022 import javax.xml.bind.annotation.XmlID;
023 import javax.xml.bind.annotation.XmlType;
024 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
025 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
026
027 /**
028 * The unique identifier for a bean. The scope of the identifier
029 * is the enclosing bean factory.
030 * <p/>
031 * <p/>
032 * <p>Java class for identifiedType complex type.
033 * <p/>
034 * <p>The following schema fragment specifies the expected content contained within this class.
035 * <p/>
036 * <pre>
037 * <complexType name="identifiedType">
038 * <complexContent>
039 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
040 * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
041 * </restriction>
042 * </complexContent>
043 * </complexType>
044 * </pre>
045 *
046 * @version $Revision: 1.1 $
047 */
048 @XmlType(name = "identifiedType")
049 @XmlAccessorType(XmlAccessType.FIELD)
050 public abstract class IdentifiedType {
051 @XmlAttribute
052 @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
053 @XmlID
054 private String id;
055
056 /**
057 * Gets the value of the id property.
058 *
059 * @return possible object is
060 * {@link String }
061 */
062 public String getId() {
063 return id;
064 }
065
066 /**
067 * Sets the value of the id property.
068 *
069 * @param value allowed object is
070 * {@link String }
071 */
072 public void setId(String value) {
073 this.id = value;
074 }
075 }