/* * DBeaver - Universal Database Manager * Copyright (C) 2013-2015 Denis Forveille (titou10.titou10@gmail.com) * Copyright (C) 2010-2017 Serge Rider (serge@jkiss.org) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jkiss.dbeaver.ext.db2.model.security; import org.jkiss.dbeaver.DBException; import org.jkiss.dbeaver.ext.db2.DB2Constants; import org.jkiss.dbeaver.ext.db2.model.DB2Package; import org.jkiss.dbeaver.ext.db2.model.DB2Schema; import org.jkiss.dbeaver.model.impl.jdbc.JDBCUtils; import org.jkiss.dbeaver.model.meta.Property; import org.jkiss.dbeaver.model.runtime.DBRProgressMonitor; import org.jkiss.dbeaver.model.struct.DBSObject; import org.jkiss.utils.CommonUtils; import java.sql.ResultSet; /** * DB2 Authorisations on Packages * * @author Denis Forveille */ public class DB2AuthPackage extends DB2AuthBase { private DB2AuthHeldType control; private DB2AuthHeldType bind; private DB2AuthHeldType execute; // ----------------------- // Constructors // ----------------------- public DB2AuthPackage(DBRProgressMonitor monitor, DB2Grantee db2Grantee, DB2Package db2Package, ResultSet resultSet) throws DBException { super(monitor, db2Grantee, db2Package, resultSet); this.control = CommonUtils.valueOf(DB2AuthHeldType.class, JDBCUtils.safeGetString(resultSet, "CONTROLAUTH")); this.bind = CommonUtils.valueOf(DB2AuthHeldType.class, JDBCUtils.safeGetString(resultSet, "BINDAUTH")); this.execute = CommonUtils.valueOf(DB2AuthHeldType.class, JDBCUtils.safeGetString(resultSet, "EXECUTEAUTH")); } // ----------------- // Properties // ----------------- @Property(viewable = true, order = 1) public DB2Schema getObjectSchema() { return super.getObjectSchema(); } @Property(viewable = true, order = 2) public DBSObject getObject() { return super.getObject(); } @Property(viewable = true, order = 20, category = DB2Constants.CAT_AUTH) public DB2AuthHeldType getControl() { return control; } @Property(viewable = true, order = 21, category = DB2Constants.CAT_AUTH) public DB2AuthHeldType getBind() { return bind; } @Property(viewable = true, order = 22, category = DB2Constants.CAT_AUTH) public DB2AuthHeldType getExecute() { return execute; } }