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

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

The newest version!
/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

package com.liferay.saml.persistence.model;

import com.liferay.portal.kernel.bean.AutoEscape;
import com.liferay.portal.kernel.model.AuditedModel;
import com.liferay.portal.kernel.model.BaseModel;
import com.liferay.portal.kernel.model.ShardedModel;

import java.util.Date;

import org.osgi.annotation.versioning.ProviderType;

/**
 * The base model interface for the SamlIdpSpSession service. Represents a row in the "SamlIdpSpSession" database table, with each column mapped to a property of this class.
 *
 * 

* This interface and its corresponding implementation com.liferay.saml.persistence.model.impl.SamlIdpSpSessionModelImpl exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in com.liferay.saml.persistence.model.impl.SamlIdpSpSessionImpl. *

* * @author Mika Koivisto * @see SamlIdpSpSession * @generated */ @ProviderType public interface SamlIdpSpSessionModel extends AuditedModel, BaseModel, ShardedModel { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a saml idp sp session model instance should use the {@link SamlIdpSpSession} interface instead. */ /** * Returns the primary key of this saml idp sp session. * * @return the primary key of this saml idp sp session */ public long getPrimaryKey(); /** * Sets the primary key of this saml idp sp session. * * @param primaryKey the primary key of this saml idp sp session */ public void setPrimaryKey(long primaryKey); /** * Returns the saml idp sp session ID of this saml idp sp session. * * @return the saml idp sp session ID of this saml idp sp session */ public long getSamlIdpSpSessionId(); /** * Sets the saml idp sp session ID of this saml idp sp session. * * @param samlIdpSpSessionId the saml idp sp session ID of this saml idp sp session */ public void setSamlIdpSpSessionId(long samlIdpSpSessionId); /** * Returns the company ID of this saml idp sp session. * * @return the company ID of this saml idp sp session */ @Override public long getCompanyId(); /** * Sets the company ID of this saml idp sp session. * * @param companyId the company ID of this saml idp sp session */ @Override public void setCompanyId(long companyId); /** * Returns the user ID of this saml idp sp session. * * @return the user ID of this saml idp sp session */ @Override public long getUserId(); /** * Sets the user ID of this saml idp sp session. * * @param userId the user ID of this saml idp sp session */ @Override public void setUserId(long userId); /** * Returns the user uuid of this saml idp sp session. * * @return the user uuid of this saml idp sp session */ @Override public String getUserUuid(); /** * Sets the user uuid of this saml idp sp session. * * @param userUuid the user uuid of this saml idp sp session */ @Override public void setUserUuid(String userUuid); /** * Returns the user name of this saml idp sp session. * * @return the user name of this saml idp sp session */ @AutoEscape @Override public String getUserName(); /** * Sets the user name of this saml idp sp session. * * @param userName the user name of this saml idp sp session */ @Override public void setUserName(String userName); /** * Returns the create date of this saml idp sp session. * * @return the create date of this saml idp sp session */ @Override public Date getCreateDate(); /** * Sets the create date of this saml idp sp session. * * @param createDate the create date of this saml idp sp session */ @Override public void setCreateDate(Date createDate); /** * Returns the modified date of this saml idp sp session. * * @return the modified date of this saml idp sp session */ @Override public Date getModifiedDate(); /** * Sets the modified date of this saml idp sp session. * * @param modifiedDate the modified date of this saml idp sp session */ @Override public void setModifiedDate(Date modifiedDate); /** * Returns the saml idp sso session ID of this saml idp sp session. * * @return the saml idp sso session ID of this saml idp sp session */ public long getSamlIdpSsoSessionId(); /** * Sets the saml idp sso session ID of this saml idp sp session. * * @param samlIdpSsoSessionId the saml idp sso session ID of this saml idp sp session */ public void setSamlIdpSsoSessionId(long samlIdpSsoSessionId); /** * Returns the saml peer binding ID of this saml idp sp session. * * @return the saml peer binding ID of this saml idp sp session */ public long getSamlPeerBindingId(); /** * Sets the saml peer binding ID of this saml idp sp session. * * @param samlPeerBindingId the saml peer binding ID of this saml idp sp session */ public void setSamlPeerBindingId(long samlPeerBindingId); @Override public SamlIdpSpSession cloneWithOriginalValues(); public default String toXmlString() { return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy