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

com.liferay.saml.persistence.model.SamlIdpSpConnectionTable 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 "SamlIdpSpConnection" database table.
 *
 * @author Mika Koivisto
 * @see SamlIdpSpConnection
 * @generated
 */
public class SamlIdpSpConnectionTable
	extends BaseTable {

	public static final SamlIdpSpConnectionTable INSTANCE =
		new SamlIdpSpConnectionTable();

	public final Column samlIdpSpConnectionId =
		createColumn(
			"samlIdpSpConnectionId", 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 samlSpEntityId =
		createColumn(
			"samlSpEntityId", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
	public final Column assertionLifetime =
		createColumn(
			"assertionLifetime", Integer.class, Types.INTEGER,
			Column.FLAG_DEFAULT);
	public final Column attributeNames =
		createColumn(
			"attributeNames", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
	public final Column attributesEnabled =
		createColumn(
			"attributesEnabled", Boolean.class, Types.BOOLEAN,
			Column.FLAG_DEFAULT);
	public final Column
		attributesNamespaceEnabled = createColumn(
			"attributesNamespaceEnabled", Boolean.class, Types.BOOLEAN,
			Column.FLAG_DEFAULT);
	public final Column enabled =
		createColumn(
			"enabled", Boolean.class, Types.BOOLEAN, Column.FLAG_DEFAULT);
	public final Column encryptionForced =
		createColumn(
			"encryptionForced", Boolean.class, Types.BOOLEAN,
			Column.FLAG_DEFAULT);
	public final Column metadataUrl =
		createColumn(
			"metadataUrl", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
	public final Column metadataXml =
		createColumn(
			"metadataXml", Clob.class, Types.CLOB, Column.FLAG_DEFAULT);
	public final Column metadataUpdatedDate =
		createColumn(
			"metadataUpdatedDate", Date.class, Types.TIMESTAMP,
			Column.FLAG_DEFAULT);
	public final Column name = createColumn(
		"name", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);
	public final Column nameIdAttribute =
		createColumn(
			"nameIdAttribute", String.class, Types.VARCHAR,
			Column.FLAG_DEFAULT);
	public final Column nameIdFormat =
		createColumn(
			"nameIdFormat", String.class, Types.VARCHAR, Column.FLAG_DEFAULT);

	private SamlIdpSpConnectionTable() {
		super("SamlIdpSpConnection", SamlIdpSpConnectionTable::new);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy