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

com.liferay.saml.persistence.model.SamlSpSessionTable Maven / Gradle / Ivy

There is a newer version: 13.0.0
Show newest version
/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * The contents of this file are subject to the terms of the Liferay Enterprise
 * Subscription License ("License"). You may not use this file except in
 * compliance with the License. You can obtain a copy of the License by
 * contacting Liferay, Inc. See the License for the specific language governing
 * permissions and limitations under the License, including but not limited to
 * distribution rights of the Software.
 *
 *
 *
 */

package com.liferay.saml.persistence.model;

import com.liferay.petra.sql.dsl.Column;
import com.liferay.petra.sql.dsl.base.BaseTable;

import java.sql.Clob;
import java.sql.Types;

import java.util.Date;

/**
 * The table class for the "SamlSpSession" database table.
 *
 * @author Mika Koivisto
 * @see SamlSpSession
 * @generated
 */
public class SamlSpSessionTable extends BaseTable {

	public static final SamlSpSessionTable INSTANCE = new SamlSpSessionTable();

	public final Column samlSpSessionId =
		createColumn(
			"samlSpSessionId", Long.class, Types.BIGINT, Column.FLAG_PRIMARY);
	public final Column companyId = createColumn(
		"companyId", Long.class, Types.BIGINT, Column.FLAG_DEFAULT);
	public final Column userId = createColumn(
		"userId", Long.class, Types.BIGINT, Column.FLAG_DEFAULT);
	public final Column userName = createColumn(
		"userName", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
	public final Column createDate = createColumn(
		"createDate", Date.class, Types.TIMESTAMP, Column.FLAG_DEFAULT);
	public final Column modifiedDate = createColumn(
		"modifiedDate", Date.class, Types.TIMESTAMP, Column.FLAG_DEFAULT);
	public final Column samlIdpEntityId =
		createColumn(
			"samlIdpEntityId", String.class, Types.VARCHAR,
			Column.FLAG_DEFAULT);
	public final Column samlSpSessionKey =
		createColumn(
			"samlSpSessionKey", String.class, Types.VARCHAR,
			Column.FLAG_DEFAULT);
	public final Column assertionXml = createColumn(
		"assertionXml", Clob.class, Types.CLOB, Column.FLAG_DEFAULT);
	public final Column jSessionId = createColumn(
		"jSessionId", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
	public final Column nameIdFormat = createColumn(
		"nameIdFormat", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
	public final Column nameIdNameQualifier =
		createColumn(
			"nameIdNameQualifier", String.class, Types.VARCHAR,
			Column.FLAG_DEFAULT);
	public final Column nameIdSPNameQualifier =
		createColumn(
			"nameIdSPNameQualifier", String.class, Types.VARCHAR,
			Column.FLAG_DEFAULT);
	public final Column nameIdValue = createColumn(
		"nameIdValue", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
	public final Column sessionIndex = createColumn(
		"sessionIndex", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
	public final Column terminated = createColumn(
		"terminated_", Boolean.class, Types.BOOLEAN, Column.FLAG_DEFAULT);

	private SamlSpSessionTable() {
		super("SamlSpSession", SamlSpSessionTable::new);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy