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

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

/**
 * 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 SamlSpSession service. Represents a row in the "SamlSpSession" database table, with each column mapped to a property of this class.
 *
 * 

* This interface and its corresponding implementation com.liferay.saml.persistence.model.impl.SamlSpSessionModelImpl 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.SamlSpSessionImpl. *

* * @author Mika Koivisto * @see SamlSpSession * @generated */ @ProviderType public interface SamlSpSessionModel extends AuditedModel, BaseModel, ShardedModel { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a saml sp session model instance should use the {@link SamlSpSession} interface instead. */ /** * Returns the primary key of this saml sp session. * * @return the primary key of this saml sp session */ public long getPrimaryKey(); /** * Sets the primary key of this saml sp session. * * @param primaryKey the primary key of this saml sp session */ public void setPrimaryKey(long primaryKey); /** * Returns the saml sp session ID of this saml sp session. * * @return the saml sp session ID of this saml sp session */ public long getSamlSpSessionId(); /** * Sets the saml sp session ID of this saml sp session. * * @param samlSpSessionId the saml sp session ID of this saml sp session */ public void setSamlSpSessionId(long samlSpSessionId); /** * Returns the company ID of this saml sp session. * * @return the company ID of this saml sp session */ @Override public long getCompanyId(); /** * Sets the company ID of this saml sp session. * * @param companyId the company ID of this saml sp session */ @Override public void setCompanyId(long companyId); /** * Returns the user ID of this saml sp session. * * @return the user ID of this saml sp session */ @Override public long getUserId(); /** * Sets the user ID of this saml sp session. * * @param userId the user ID of this saml sp session */ @Override public void setUserId(long userId); /** * Returns the user uuid of this saml sp session. * * @return the user uuid of this saml sp session */ @Override public String getUserUuid(); /** * Sets the user uuid of this saml sp session. * * @param userUuid the user uuid of this saml sp session */ @Override public void setUserUuid(String userUuid); /** * Returns the user name of this saml sp session. * * @return the user name of this saml sp session */ @AutoEscape @Override public String getUserName(); /** * Sets the user name of this saml sp session. * * @param userName the user name of this saml sp session */ @Override public void setUserName(String userName); /** * Returns the create date of this saml sp session. * * @return the create date of this saml sp session */ @Override public Date getCreateDate(); /** * Sets the create date of this saml sp session. * * @param createDate the create date of this saml sp session */ @Override public void setCreateDate(Date createDate); /** * Returns the modified date of this saml sp session. * * @return the modified date of this saml sp session */ @Override public Date getModifiedDate(); /** * Sets the modified date of this saml sp session. * * @param modifiedDate the modified date of this saml sp session */ @Override public void setModifiedDate(Date modifiedDate); /** * Returns the saml peer binding ID of this saml sp session. * * @return the saml peer binding ID of this saml sp session */ public long getSamlPeerBindingId(); /** * Sets the saml peer binding ID of this saml sp session. * * @param samlPeerBindingId the saml peer binding ID of this saml sp session */ public void setSamlPeerBindingId(long samlPeerBindingId); /** * Returns the assertion xml of this saml sp session. * * @return the assertion xml of this saml sp session */ @AutoEscape public String getAssertionXml(); /** * Sets the assertion xml of this saml sp session. * * @param assertionXml the assertion xml of this saml sp session */ public void setAssertionXml(String assertionXml); /** * Returns the j session ID of this saml sp session. * * @return the j session ID of this saml sp session */ @AutoEscape public String getJSessionId(); /** * Sets the j session ID of this saml sp session. * * @param jSessionId the j session ID of this saml sp session */ public void setJSessionId(String jSessionId); /** * Returns the saml sp session key of this saml sp session. * * @return the saml sp session key of this saml sp session */ @AutoEscape public String getSamlSpSessionKey(); /** * Sets the saml sp session key of this saml sp session. * * @param samlSpSessionKey the saml sp session key of this saml sp session */ public void setSamlSpSessionKey(String samlSpSessionKey); /** * Returns the session index of this saml sp session. * * @return the session index of this saml sp session */ @AutoEscape public String getSessionIndex(); /** * Sets the session index of this saml sp session. * * @param sessionIndex the session index of this saml sp session */ public void setSessionIndex(String sessionIndex); /** * Returns the terminated of this saml sp session. * * @return the terminated of this saml sp session */ public boolean getTerminated(); /** * Returns true if this saml sp session is terminated. * * @return true if this saml sp session is terminated; false otherwise */ public boolean isTerminated(); /** * Sets whether this saml sp session is terminated. * * @param terminated the terminated of this saml sp session */ public void setTerminated(boolean terminated); @Override public SamlSpSession cloneWithOriginalValues(); public default String toXmlString() { return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy