All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.util.sybase.sys.tables.Sysuser Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
/**
 * 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", "2.3.0"},
                            comments = "This class is generated by jOOQ")
public class Sysuser extends org.jooq.impl.TableImpl {

	private static final long serialVersionUID = -1599839547;

	/**
	 * 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
	 */
	private static final java.lang.Class __RECORD_TYPE = org.jooq.Record.class;

	/**
	 * The class holding records for this type
	 */
	@Override
	public java.lang.Class getRecordType() {
		return __RECORD_TYPE;
	}

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField USER_ID = createField("user_id", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField OBJECT_ID = createField("object_id", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField USER_NAME = createField("user_name", org.jooq.impl.SQLDataType.CHAR, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField PASSWORD = createField("password", org.jooq.impl.SQLDataType.BINARY, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField LOGIN_POLICY_ID = createField("login_policy_id", org.jooq.impl.SQLDataType.BIGINT, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField EXPIRE_PASSWORD_ON_LOGIN = createField("expire_password_on_login", org.jooq.impl.SQLDataType.TINYINT, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField PASSWORD_CREATION_TIME = createField("password_creation_time", org.jooq.impl.SQLDataType.TIMESTAMP, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField FAILED_LOGIN_ATTEMPTS = createField("failed_login_attempts", org.jooq.impl.SQLDataType.INTEGER, this);

	/**
	 * An uncommented item
	 */
	public final org.jooq.TableField LAST_LOGIN_TIME = createField("last_login_time", org.jooq.impl.SQLDataType.TIMESTAMP, this);

	public Sysuser() {
		super("SYSUSER", org.jooq.util.sybase.sys.Sys.SYS);
	}

	public Sysuser(java.lang.String alias) {
		super(alias, org.jooq.util.sybase.sys.Sys.SYS, org.jooq.util.sybase.sys.tables.Sysuser.SYSUSER);
	}

	@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