01: package com.ibatis.jpetstore.domain;
02:
03: import java.io.Serializable;
04:
05: public class Sequence implements Serializable {
06:
07: /* Private Fields */
08:
09: private String name;
10:
11: private int nextId;
12:
13: /* Constructors */
14:
15: public Sequence() {
16: }
17:
18: public Sequence(String name, int nextId) {
19: this .name = name;
20: this .nextId = nextId;
21: }
22:
23: /* JavaBeans Properties */
24:
25: public String getName() {
26: return name;
27: }
28:
29: public void setName(String name) {
30: this .name = name;
31: }
32:
33: public int getNextId() {
34: return nextId;
35: }
36:
37: public void setNextId(int nextId) {
38: this.nextId = nextId;
39: }
40:
41: }
|