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
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
;
18 * access_ctl_object table dao
25 public class AccessCtlObjectDAO
{
30 * SELECT, INSERT, UPDATE, DELETE, DDL
32 * This time only SELECT - hangum. 15.04.27
36 String dontuse_object
= PublicTadpoleDefine
.YES_NO
.NO
.name();
40 Timestamp create_date
;
45 public AccessCtlObjectDAO() {
56 * @param seq the seq to set
58 public void setSeq(int seq
) {
63 * @return the access_seq
65 public int getAccess_seq() {
70 * @param access_seq the access_seq to set
72 public void setAccess_seq(int access_seq
) {
73 this.access_seq
= access_seq
;
79 public String
getType() {
84 * @param type the type to set
86 public void setType(String type
) {
91 * @return the obj_name
93 public String
getObj_name() {
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() {
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() {
126 * @param description the description to set
128 public void setDescription(String description
) {
129 this.description
= description
;
135 public String
getDelyn() {
140 * @param delyn the delyn to set
142 public void setDelyn(String delyn
) {
147 * @return the create_date
149 public Timestamp
getCreate_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
;