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.jpa;
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.XmlType;
022:
023: /**
024: *
025: *
026: * @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME)
027: * public @interface SequenceGenerator {
028: * String name();
029: * String sequenceName() default "";
030: * int initialValue() default 1;
031: * int allocationSize() default 50;
032: * }
033: *
034: *
035: *
036: * <p>Java class for sequence-generator complex type.
037: *
038: * <p>The following schema fragment specifies the expected content contained within this class.
039: *
040: * <pre>
041: * <complexType name="sequence-generator">
042: * <complexContent>
043: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
044: * <attribute name="allocation-size" type="{http://www.w3.org/2001/XMLSchema}int" />
045: * <attribute name="initial-value" type="{http://www.w3.org/2001/XMLSchema}int" />
046: * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
047: * <attribute name="sequence-name" type="{http://www.w3.org/2001/XMLSchema}string" />
048: * </restriction>
049: * </complexContent>
050: * </complexType>
051: * </pre>
052: *
053: *
054: */
055: @XmlAccessorType(XmlAccessType.FIELD)
056: @XmlType(name="sequence-generator")
057: public class SequenceGenerator {
058:
059: @XmlAttribute(name="allocation-size")
060: protected Integer allocationSize;
061: @XmlAttribute(name="initial-value")
062: protected Integer initialValue;
063: @XmlAttribute(required=true)
064: protected String name;
065: @XmlAttribute(name="sequence-name")
066: protected String sequenceName;
067:
068: /**
069: * Gets the value of the allocationSize property.
070: *
071: * @return
072: * possible object is
073: * {@link Integer }
074: *
075: */
076: public Integer getAllocationSize() {
077: return allocationSize;
078: }
079:
080: /**
081: * Sets the value of the allocationSize property.
082: *
083: * @param value
084: * allowed object is
085: * {@link Integer }
086: *
087: */
088: public void setAllocationSize(Integer value) {
089: this .allocationSize = value;
090: }
091:
092: /**
093: * Gets the value of the initialValue property.
094: *
095: * @return
096: * possible object is
097: * {@link Integer }
098: *
099: */
100: public Integer getInitialValue() {
101: return initialValue;
102: }
103:
104: /**
105: * Sets the value of the initialValue property.
106: *
107: * @param value
108: * allowed object is
109: * {@link Integer }
110: *
111: */
112: public void setInitialValue(Integer value) {
113: this .initialValue = value;
114: }
115:
116: /**
117: * Gets the value of the name property.
118: *
119: * @return
120: * possible object is
121: * {@link String }
122: *
123: */
124: public String getName() {
125: return name;
126: }
127:
128: /**
129: * Sets the value of the name property.
130: *
131: * @param value
132: * allowed object is
133: * {@link String }
134: *
135: */
136: public void setName(String value) {
137: this .name = value;
138: }
139:
140: /**
141: * Gets the value of the sequenceName property.
142: *
143: * @return
144: * possible object is
145: * {@link String }
146: *
147: */
148: public String getSequenceName() {
149: return sequenceName;
150: }
151:
152: /**
153: * Sets the value of the sequenceName property.
154: *
155: * @param value
156: * allowed object is
157: * {@link String }
158: *
159: */
160: public void setSequenceName(String value) {
161: this.sequenceName = value;
162: }
163:
164: }
|