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.cmp;
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: * <p>Java class for anonymous complex type.
026: *
027: * <p>The following schema fragment specifies the expected content contained within this class.
028: *
029: * <pre>
030: * <complexType>
031: * <complexContent>
032: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
033: * <sequence>
034: * <element ref="{http://jboss.org}field-name" minOccurs="0"/>
035: * <element ref="{http://jboss.org}column-name" minOccurs="0"/>
036: * <sequence minOccurs="0">
037: * <element ref="{http://jboss.org}jdbc-type"/>
038: * <element ref="{http://jboss.org}sql-type"/>
039: * </sequence>
040: * </sequence>
041: * </restriction>
042: * </complexContent>
043: * </complexType>
044: * </pre>
045: *
046: *
047: */
048: @XmlAccessorType(XmlAccessType.FIELD)
049: @XmlType(name="",propOrder={"fieldName","columnName","jdbcType","sqlType"})
050: @XmlRootElement(name="updated-time")
051: public class UpdatedTime {
052:
053: @XmlElement(name="field-name")
054: protected FieldName fieldName;
055: @XmlElement(name="column-name")
056: protected ColumnName columnName;
057: @XmlElement(name="jdbc-type")
058: protected JdbcType jdbcType;
059: @XmlElement(name="sql-type")
060: protected SqlType sqlType;
061:
062: /**
063: * Gets the value of the fieldName property.
064: *
065: * @return
066: * possible object is
067: * {@link FieldName }
068: *
069: */
070: public FieldName getFieldName() {
071: return fieldName;
072: }
073:
074: /**
075: * Sets the value of the fieldName property.
076: *
077: * @param value
078: * allowed object is
079: * {@link FieldName }
080: *
081: */
082: public void setFieldName(FieldName value) {
083: this .fieldName = value;
084: }
085:
086: /**
087: * Gets the value of the columnName property.
088: *
089: * @return
090: * possible object is
091: * {@link ColumnName }
092: *
093: */
094: public ColumnName getColumnName() {
095: return columnName;
096: }
097:
098: /**
099: * Sets the value of the columnName property.
100: *
101: * @param value
102: * allowed object is
103: * {@link ColumnName }
104: *
105: */
106: public void setColumnName(ColumnName value) {
107: this .columnName = value;
108: }
109:
110: /**
111: * Gets the value of the jdbcType property.
112: *
113: * @return
114: * possible object is
115: * {@link JdbcType }
116: *
117: */
118: public JdbcType getJdbcType() {
119: return jdbcType;
120: }
121:
122: /**
123: * Sets the value of the jdbcType property.
124: *
125: * @param value
126: * allowed object is
127: * {@link JdbcType }
128: *
129: */
130: public void setJdbcType(JdbcType value) {
131: this .jdbcType = value;
132: }
133:
134: /**
135: * Gets the value of the sqlType property.
136: *
137: * @return
138: * possible object is
139: * {@link SqlType }
140: *
141: */
142: public SqlType getSqlType() {
143: return sqlType;
144: }
145:
146: /**
147: * Sets the value of the sqlType property.
148: *
149: * @param value
150: * allowed object is
151: * {@link SqlType }
152: *
153: */
154: public void setSqlType(SqlType value) {
155: this.sqlType = value;
156: }
157:
158: }
|