com.liferay.saml.persistence.service.SamlSpIdpConnectionLocalServiceWrapper Maven / Gradle / Ivy
/**
* 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.service;
import com.liferay.portal.kernel.service.ServiceWrapper;
/**
* Provides a wrapper for {@link SamlSpIdpConnectionLocalService}.
*
* @author Mika Koivisto
* @see SamlSpIdpConnectionLocalService
* @generated
*/
public class SamlSpIdpConnectionLocalServiceWrapper
implements SamlSpIdpConnectionLocalService,
ServiceWrapper {
public SamlSpIdpConnectionLocalServiceWrapper(
SamlSpIdpConnectionLocalService samlSpIdpConnectionLocalService) {
_samlSpIdpConnectionLocalService = samlSpIdpConnectionLocalService;
}
/**
* Adds the saml sp idp connection to the database. Also notifies the appropriate model listeners.
*
*
* Important: Inspect SamlSpIdpConnectionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
*
*
* @param samlSpIdpConnection the saml sp idp connection
* @return the saml sp idp connection that was added
*/
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
addSamlSpIdpConnection(
com.liferay.saml.persistence.model.SamlSpIdpConnection
samlSpIdpConnection) {
return _samlSpIdpConnectionLocalService.addSamlSpIdpConnection(
samlSpIdpConnection);
}
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
addSamlSpIdpConnection(
String samlIdpEntityId, boolean assertionSignatureRequired,
long clockSkew, boolean enabled, boolean forceAuthn,
boolean ldapImportEnabled, String metadataUrl,
java.io.InputStream metadataXmlInputStream, String name,
String nameIdFormat, boolean signAuthnRequest,
boolean unknownUsersAreStrangers, String userAttributeMappings,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws com.liferay.portal.kernel.exception.PortalException {
return _samlSpIdpConnectionLocalService.addSamlSpIdpConnection(
samlIdpEntityId, assertionSignatureRequired, clockSkew, enabled,
forceAuthn, ldapImportEnabled, metadataUrl, metadataXmlInputStream,
name, nameIdFormat, signAuthnRequest, unknownUsersAreStrangers,
userAttributeMappings, serviceContext);
}
/**
* @deprecated As of Athanasius (7.3.x), replaced by {@link
#addSamlSpIdpConnection(String, boolean, long, boolean,
boolean, boolean, String, InputStream, String, String,
boolean, boolean, String, ServiceContext)}
*/
@Deprecated
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
addSamlSpIdpConnection(
String samlIdpEntityId, boolean assertionSignatureRequired,
long clockSkew, boolean enabled, boolean forceAuthn,
boolean ldapImportEnabled, String metadataUrl,
java.io.InputStream metadataXmlInputStream, String name,
String nameIdFormat, boolean signAuthnRequest,
String userAttributeMappings,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws com.liferay.portal.kernel.exception.PortalException {
return _samlSpIdpConnectionLocalService.addSamlSpIdpConnection(
samlIdpEntityId, assertionSignatureRequired, clockSkew, enabled,
forceAuthn, ldapImportEnabled, metadataUrl, metadataXmlInputStream,
name, nameIdFormat, signAuthnRequest, userAttributeMappings,
serviceContext);
}
/**
* @throws PortalException
*/
@Override
public com.liferay.portal.kernel.model.PersistedModel createPersistedModel(
java.io.Serializable primaryKeyObj)
throws com.liferay.portal.kernel.exception.PortalException {
return _samlSpIdpConnectionLocalService.createPersistedModel(
primaryKeyObj);
}
/**
* Creates a new saml sp idp connection with the primary key. Does not add the saml sp idp connection to the database.
*
* @param samlSpIdpConnectionId the primary key for the new saml sp idp connection
* @return the new saml sp idp connection
*/
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
createSamlSpIdpConnection(long samlSpIdpConnectionId) {
return _samlSpIdpConnectionLocalService.createSamlSpIdpConnection(
samlSpIdpConnectionId);
}
/**
* @throws PortalException
*/
@Override
public com.liferay.portal.kernel.model.PersistedModel deletePersistedModel(
com.liferay.portal.kernel.model.PersistedModel persistedModel)
throws com.liferay.portal.kernel.exception.PortalException {
return _samlSpIdpConnectionLocalService.deletePersistedModel(
persistedModel);
}
/**
* Deletes the saml sp idp connection with the primary key from the database. Also notifies the appropriate model listeners.
*
*
* Important: Inspect SamlSpIdpConnectionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
*
*
* @param samlSpIdpConnectionId the primary key of the saml sp idp connection
* @return the saml sp idp connection that was removed
* @throws PortalException if a saml sp idp connection with the primary key could not be found
*/
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
deleteSamlSpIdpConnection(long samlSpIdpConnectionId)
throws com.liferay.portal.kernel.exception.PortalException {
return _samlSpIdpConnectionLocalService.deleteSamlSpIdpConnection(
samlSpIdpConnectionId);
}
/**
* Deletes the saml sp idp connection from the database. Also notifies the appropriate model listeners.
*
*
* Important: Inspect SamlSpIdpConnectionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
*
*
* @param samlSpIdpConnection the saml sp idp connection
* @return the saml sp idp connection that was removed
*/
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
deleteSamlSpIdpConnection(
com.liferay.saml.persistence.model.SamlSpIdpConnection
samlSpIdpConnection) {
return _samlSpIdpConnectionLocalService.deleteSamlSpIdpConnection(
samlSpIdpConnection);
}
@Override
public T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) {
return _samlSpIdpConnectionLocalService.dslQuery(dslQuery);
}
@Override
public int dslQueryCount(
com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) {
return _samlSpIdpConnectionLocalService.dslQueryCount(dslQuery);
}
@Override
public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
return _samlSpIdpConnectionLocalService.dynamicQuery();
}
/**
* Performs a dynamic query on the database and returns the matching rows.
*
* @param dynamicQuery the dynamic query
* @return the matching rows
*/
@Override
public java.util.List dynamicQuery(
com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
return _samlSpIdpConnectionLocalService.dynamicQuery(dynamicQuery);
}
/**
* Performs a dynamic query on the database and returns a range of the matching rows.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from com.liferay.saml.persistence.model.impl.SamlSpIdpConnectionModelImpl
.
*
*
* @param dynamicQuery the dynamic query
* @param start the lower bound of the range of model instances
* @param end the upper bound of the range of model instances (not inclusive)
* @return the range of matching rows
*/
@Override
public java.util.List dynamicQuery(
com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
int end) {
return _samlSpIdpConnectionLocalService.dynamicQuery(
dynamicQuery, start, end);
}
/**
* Performs a dynamic query on the database and returns an ordered range of the matching rows.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from com.liferay.saml.persistence.model.impl.SamlSpIdpConnectionModelImpl
.
*
*
* @param dynamicQuery the dynamic query
* @param start the lower bound of the range of model instances
* @param end the upper bound of the range of model instances (not inclusive)
* @param orderByComparator the comparator to order the results by (optionally null
)
* @return the ordered range of matching rows
*/
@Override
public java.util.List dynamicQuery(
com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator orderByComparator) {
return _samlSpIdpConnectionLocalService.dynamicQuery(
dynamicQuery, start, end, orderByComparator);
}
/**
* Returns the number of rows matching the dynamic query.
*
* @param dynamicQuery the dynamic query
* @return the number of rows matching the dynamic query
*/
@Override
public long dynamicQueryCount(
com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) {
return _samlSpIdpConnectionLocalService.dynamicQueryCount(dynamicQuery);
}
/**
* Returns the number of rows matching the dynamic query.
*
* @param dynamicQuery the dynamic query
* @param projection the projection to apply to the query
* @return the number of rows matching the dynamic query
*/
@Override
public long dynamicQueryCount(
com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
com.liferay.portal.kernel.dao.orm.Projection projection) {
return _samlSpIdpConnectionLocalService.dynamicQueryCount(
dynamicQuery, projection);
}
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
fetchSamlSpIdpConnection(long samlSpIdpConnectionId) {
return _samlSpIdpConnectionLocalService.fetchSamlSpIdpConnection(
samlSpIdpConnectionId);
}
@Override
public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery
getActionableDynamicQuery() {
return _samlSpIdpConnectionLocalService.getActionableDynamicQuery();
}
@Override
public com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery
getIndexableActionableDynamicQuery() {
return _samlSpIdpConnectionLocalService.
getIndexableActionableDynamicQuery();
}
/**
* Returns the OSGi service identifier.
*
* @return the OSGi service identifier
*/
@Override
public String getOSGiServiceIdentifier() {
return _samlSpIdpConnectionLocalService.getOSGiServiceIdentifier();
}
/**
* @throws PortalException
*/
@Override
public com.liferay.portal.kernel.model.PersistedModel getPersistedModel(
java.io.Serializable primaryKeyObj)
throws com.liferay.portal.kernel.exception.PortalException {
return _samlSpIdpConnectionLocalService.getPersistedModel(
primaryKeyObj);
}
/**
* Returns the saml sp idp connection with the primary key.
*
* @param samlSpIdpConnectionId the primary key of the saml sp idp connection
* @return the saml sp idp connection
* @throws PortalException if a saml sp idp connection with the primary key could not be found
*/
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
getSamlSpIdpConnection(long samlSpIdpConnectionId)
throws com.liferay.portal.kernel.exception.PortalException {
return _samlSpIdpConnectionLocalService.getSamlSpIdpConnection(
samlSpIdpConnectionId);
}
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
getSamlSpIdpConnection(long companyId, String samlIdpEntityId)
throws com.liferay.portal.kernel.exception.PortalException {
return _samlSpIdpConnectionLocalService.getSamlSpIdpConnection(
companyId, samlIdpEntityId);
}
/**
* Returns a range of all the saml sp idp connections.
*
*
* Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from com.liferay.saml.persistence.model.impl.SamlSpIdpConnectionModelImpl
.
*
*
* @param start the lower bound of the range of saml sp idp connections
* @param end the upper bound of the range of saml sp idp connections (not inclusive)
* @return the range of saml sp idp connections
*/
@Override
public java.util.List
getSamlSpIdpConnections(int start, int end) {
return _samlSpIdpConnectionLocalService.getSamlSpIdpConnections(
start, end);
}
@Override
public java.util.List
getSamlSpIdpConnections(long companyId) {
return _samlSpIdpConnectionLocalService.getSamlSpIdpConnections(
companyId);
}
@Override
public java.util.List
getSamlSpIdpConnections(long companyId, int start, int end) {
return _samlSpIdpConnectionLocalService.getSamlSpIdpConnections(
companyId, start, end);
}
@Override
public java.util.List
getSamlSpIdpConnections(
long companyId, int start, int end,
com.liferay.portal.kernel.util.OrderByComparator
orderByComparator) {
return _samlSpIdpConnectionLocalService.getSamlSpIdpConnections(
companyId, start, end, orderByComparator);
}
/**
* Returns the number of saml sp idp connections.
*
* @return the number of saml sp idp connections
*/
@Override
public int getSamlSpIdpConnectionsCount() {
return _samlSpIdpConnectionLocalService.getSamlSpIdpConnectionsCount();
}
@Override
public int getSamlSpIdpConnectionsCount(long companyId) {
return _samlSpIdpConnectionLocalService.getSamlSpIdpConnectionsCount(
companyId);
}
@Override
public void updateMetadata(long samlSpIdpConnectionId)
throws com.liferay.portal.kernel.exception.PortalException {
_samlSpIdpConnectionLocalService.updateMetadata(samlSpIdpConnectionId);
}
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
updateSamlSpIdpConnection(
long samlSpIdpConnectionId, String samlIdpEntityId,
boolean assertionSignatureRequired, long clockSkew,
boolean enabled, boolean forceAuthn, boolean ldapImportEnabled,
String metadataUrl, java.io.InputStream metadataXmlInputStream,
String name, String nameIdFormat, boolean signAuthnRequest,
boolean unknownUsersAreStrangers, String userAttributeMappings,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws com.liferay.portal.kernel.exception.PortalException {
return _samlSpIdpConnectionLocalService.updateSamlSpIdpConnection(
samlSpIdpConnectionId, samlIdpEntityId, assertionSignatureRequired,
clockSkew, enabled, forceAuthn, ldapImportEnabled, metadataUrl,
metadataXmlInputStream, name, nameIdFormat, signAuthnRequest,
unknownUsersAreStrangers, userAttributeMappings, serviceContext);
}
/**
* @deprecated As of Athanasius (7.3.x), replaced by {@link
#updateSamlSpIdpConnection(long, String, boolean, long,
boolean, boolean, boolean, String, InputStream, String,
String, boolean, boolean, String, ServiceContext)}
*/
@Deprecated
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
updateSamlSpIdpConnection(
long samlSpIdpConnectionId, String samlIdpEntityId,
boolean assertionSignatureRequired, long clockSkew,
boolean enabled, boolean forceAuthn, boolean ldapImportEnabled,
String metadataUrl, java.io.InputStream metadataXmlInputStream,
String name, String nameIdFormat, boolean signAuthnRequest,
String userAttributeMappings,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
throws com.liferay.portal.kernel.exception.PortalException {
return _samlSpIdpConnectionLocalService.updateSamlSpIdpConnection(
samlSpIdpConnectionId, samlIdpEntityId, assertionSignatureRequired,
clockSkew, enabled, forceAuthn, ldapImportEnabled, metadataUrl,
metadataXmlInputStream, name, nameIdFormat, signAuthnRequest,
userAttributeMappings, serviceContext);
}
/**
* Updates the saml sp idp connection in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
*
*
* Important: Inspect SamlSpIdpConnectionLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
*
*
* @param samlSpIdpConnection the saml sp idp connection
* @return the saml sp idp connection that was updated
*/
@Override
public com.liferay.saml.persistence.model.SamlSpIdpConnection
updateSamlSpIdpConnection(
com.liferay.saml.persistence.model.SamlSpIdpConnection
samlSpIdpConnection) {
return _samlSpIdpConnectionLocalService.updateSamlSpIdpConnection(
samlSpIdpConnection);
}
@Override
public SamlSpIdpConnectionLocalService getWrappedService() {
return _samlSpIdpConnectionLocalService;
}
@Override
public void setWrappedService(
SamlSpIdpConnectionLocalService samlSpIdpConnectionLocalService) {
_samlSpIdpConnectionLocalService = samlSpIdpConnectionLocalService;
}
private SamlSpIdpConnectionLocalService _samlSpIdpConnectionLocalService;
}