org.jooq.util.sybase.sys.tables.Sysuser Maven / Gradle / Ivy
/**
* This class is generated by jOOQ
*/
package org.jooq.util.sybase.sys.tables;
/**
* This class is generated by jOOQ.
*/
@javax.annotation.Generated(value = {"http://www.jooq.org", "3.0.0"},
comments = "This class is generated by jOOQ")
@java.lang.SuppressWarnings("all")
public class Sysuser extends org.jooq.impl.TableImpl {
private static final long serialVersionUID = -337633291;
/**
* The singleton instance of SYS.SYSUSER
*/
public static final org.jooq.util.sybase.sys.tables.Sysuser SYSUSER = new org.jooq.util.sybase.sys.tables.Sysuser();
/**
* The class holding records for this type
*/
@Override
public java.lang.Class getRecordType() {
return org.jooq.Record.class;
}
/**
* The column SYS.SYSUSER.user_id
.
*/
public final org.jooq.TableField USER_ID = createField("user_id", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The column SYS.SYSUSER.object_id
.
*/
public final org.jooq.TableField OBJECT_ID = createField("object_id", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The column SYS.SYSUSER.user_name
.
*/
public final org.jooq.TableField USER_NAME = createField("user_name", org.jooq.impl.SQLDataType.CHAR, this);
/**
* The column SYS.SYSUSER.password
.
*/
public final org.jooq.TableField PASSWORD = createField("password", org.jooq.impl.SQLDataType.BINARY, this);
/**
* The column SYS.SYSUSER.login_policy_id
.
*/
public final org.jooq.TableField LOGIN_POLICY_ID = createField("login_policy_id", org.jooq.impl.SQLDataType.BIGINT, this);
/**
* The column SYS.SYSUSER.expire_password_on_login
.
*/
public final org.jooq.TableField EXPIRE_PASSWORD_ON_LOGIN = createField("expire_password_on_login", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* The column SYS.SYSUSER.password_creation_time
.
*/
public final org.jooq.TableField PASSWORD_CREATION_TIME = createField("password_creation_time", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* The column SYS.SYSUSER.failed_login_attempts
.
*/
public final org.jooq.TableField FAILED_LOGIN_ATTEMPTS = createField("failed_login_attempts", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* The column SYS.SYSUSER.last_login_time
.
*/
public final org.jooq.TableField LAST_LOGIN_TIME = createField("last_login_time", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* Create a SYS.SYSUSER
table reference
*/
public Sysuser() {
super("SYSUSER", org.jooq.util.sybase.sys.Sys.SYS);
}
/**
* Create an aliased SYS.SYSUSER
table reference
*/
public Sysuser(java.lang.String alias) {
super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysuser.SYSUSER);
}
/**
* {@inheritDoc}
*/
@Override
public org.jooq.util.sybase.sys.tables.Sysuser as(java.lang.String alias) {
return new org.jooq.util.sybase.sys.tables.Sysuser(alias);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy