complete db access control
[Tadpole.git] / com.hangum.tadpole.commons.sql / src / com / hangum / tadpole / engine / query / dao / system / accesscontrol / AccessCtlObjectDAO.java
blob5bb09c247ee98de0af97ac7428a2bda2176bf689
1 /*******************************************************************************
2 * Copyright (c) 2012 - 2015 hangum.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the GNU Lesser Public License v2.1
5 * which accompanies this distribution, and is available at
6 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
7 *
8 * Contributors:
9 * hangum - initial API and implementation
10 ******************************************************************************/
11 package com.hangum.tadpole.engine.query.dao.system.accesscontrol;
13 import java.sql.Timestamp;
15 import com.hangum.tadpold.commons.libs.core.define.PublicTadpoleDefine;
17 /**
18 * access_ctl_object table dao
20 * @author hangum
21 * @version 1.6.1
22 * @since 2015. 4. 26.
25 public class AccessCtlObjectDAO {
26 int seq;
27 int access_seq;
29 /**
30 * SELECT, INSERT, UPDATE, DELETE, DDL
32 * This time only SELECT - hangum. 15.04.27
34 String type;
35 String obj_name;
36 String dontuse_object = PublicTadpoleDefine.YES_NO.NO.name();
37 String detail_obj;
38 String description;
39 String delyn;
40 Timestamp create_date;
42 /**
45 public AccessCtlObjectDAO() {
48 /**
49 * @return the seq
51 public int getSeq() {
52 return seq;
55 /**
56 * @param seq the seq to set
58 public void setSeq(int seq) {
59 this.seq = seq;
62 /**
63 * @return the access_seq
65 public int getAccess_seq() {
66 return access_seq;
69 /**
70 * @param access_seq the access_seq to set
72 public void setAccess_seq(int access_seq) {
73 this.access_seq = access_seq;
76 /**
77 * @return the type
79 public String getType() {
80 return type;
83 /**
84 * @param type the type to set
86 public void setType(String type) {
87 this.type = type;
90 /**
91 * @return the obj_name
93 public String getObj_name() {
94 return obj_name;
97 /**
98 * @param obj_name the obj_name to set
100 public void setObj_name(String obj_name) {
101 this.obj_name = obj_name;
105 * @return the detail_obj
107 public String getDetail_obj() {
108 return detail_obj;
112 * @param detail_obj the detail_obj to set
114 public void setDetail_obj(String detail_obj) {
115 this.detail_obj = detail_obj;
119 * @return the description
121 public String getDescription() {
122 return description;
126 * @param description the description to set
128 public void setDescription(String description) {
129 this.description = description;
133 * @return the delyn
135 public String getDelyn() {
136 return delyn;
140 * @param delyn the delyn to set
142 public void setDelyn(String delyn) {
143 this.delyn = delyn;
147 * @return the create_date
149 public Timestamp getCreate_date() {
150 return create_date;
154 * @param create_date the create_date to set
156 public void setCreate_date(Timestamp create_date) {
157 this.create_date = create_date;
161 * @return the dontuse_object
163 public String getDontuse_object() {
164 return dontuse_object;
168 * @param dontuse_object the dontuse_object to set
170 public void setDontuse_object(String dontuse_object) {
171 this.dontuse_object = dontuse_object;