com.github.jinahya.sql.database.metadata.bind.TablePrivilege Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of database-metadata-bind Show documentation
Show all versions of database-metadata-bind Show documentation
Class for binding results of java.sql.DatabaseMetaData
/*
* Copyright 2013 Jin Kwon .
*
* 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 com.github.jinahya.sql.database.metadata.bind;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.CompareToBuilder;
/**
* An entity class for binding the result of
* {@link java.sql.DatabaseMetaData#getTablePrivileges(java.lang.String, java.lang.String, java.lang.String)}.
*
* @author Jin Kwon <jinahya_at_gmail.com>
*/
@XmlRootElement
@XmlType(
propOrder = {
"grantor", "grantee", "privilege", "isGrantable"
}
)
public class TablePrivilege extends AbstractChild
implements Comparable {
// by TABLE_CAT, TABLE_SCHEM, TABLE_NAME, and PRIVILEGE.
@Override
public int compareTo(final TablePrivilege o) {
return new CompareToBuilder()
.append(tableCat, o.getTableCat())
.append(tableSchem, o.getTableSchem())
.append(tableName, o.getTableName())
.append(privilege, o.getPrivilege())
.build();
}
@Override
public String toString() {
return super.toString() + "{"
+ "tableCat=" + tableCat
+ ", tableSchem=" + tableSchem
+ ", tableName=" + tableName
+ ", grantor=" + grantor
+ ", grantee=" + grantee
+ ", privilege=" + privilege
+ ", isGrantable=" + isGrantable
+ "}";
}
// ---------------------------------------------------------------- tableCat
public String getTableCat() {
return tableCat;
}
public void setTableCat(final String tableCat) {
this.tableCat = tableCat;
}
// -------------------------------------------------------------- tableSchem
public String getTableSchem() {
return tableSchem;
}
public void setTableSchem(final String tableSchem) {
this.tableSchem = tableSchem;
}
// --------------------------------------------------------------- tableName
public String getTableName() {
return tableName;
}
public void setTableName(final String tableName) {
this.tableName = tableName;
}
// ----------------------------------------------------------------- grantor
public String getGrantor() {
return grantor;
}
public void setGrantor(final String grantor) {
this.grantor = grantor;
}
// ----------------------------------------------------------------- grantee
public String getGrantee() {
return grantee;
}
public void setGrantee(final String grantee) {
this.grantee = grantee;
}
// --------------------------------------------------------------- privilege
public String getPrivilege() {
return privilege;
}
public void setPrivilege(final String privilege) {
this.privilege = privilege;
}
// ------------------------------------------------------------- isGrantable
public String getIsGrantable() {
return isGrantable;
}
public void setIsGrantable(final String isGrantable) {
this.isGrantable = isGrantable;
}
// ------------------------------------------------------------------- table
// just for class diagram
@Deprecated
private Table getTable() {
return getParent();
}
// public void setTable(final Table table) {
//
// setParent(table);
// }
// -------------------------------------------------------------------------
@Label("TABLE_CAT")
@NillableBySpecification
@XmlAttribute
private String tableCat;
@Label("TABLE_SCHEM")
@NillableBySpecification
@XmlAttribute
private String tableSchem;
@Label("TABLE_NAME")
@XmlAttribute
private String tableName;
@Label("GRANTOR")
@NillableBySpecification
@XmlElement(nillable = true, required = true)
private String grantor;
@Label("GRANTEE")
@XmlElement(required = true)
private String grantee;
@Label("PRIVILEGE")
@XmlElement(required = true)
private String privilege;
@Label("IS_GRANTABLE")
@NillableBySpecification
@XmlElement(nillable = true, required = true)
private String isGrantable;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy