com.liferay.change.tracking.internal.spi.reference.PortalPreferencesTableReferenceDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.change.tracking.service
Show all versions of com.liferay.change.tracking.service
Liferay Change Tracking Service
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.change.tracking.internal.spi.reference;
import com.liferay.change.tracking.spi.reference.TableReferenceDefinition;
import com.liferay.change.tracking.spi.reference.builder.ChildTableReferenceInfoBuilder;
import com.liferay.change.tracking.spi.reference.builder.ParentTableReferenceInfoBuilder;
import com.liferay.portal.kernel.model.CompanyTable;
import com.liferay.portal.kernel.model.OrganizationTable;
import com.liferay.portal.kernel.model.PortalPreferencesTable;
import com.liferay.portal.kernel.model.UserTable;
import com.liferay.portal.kernel.service.persistence.BasePersistence;
import com.liferay.portal.kernel.service.persistence.PortalPreferencesPersistence;
import com.liferay.portal.kernel.util.PortletKeys;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.Reference;
/**
* @author Preston Crary
*/
@Component(service = TableReferenceDefinition.class)
public class PortalPreferencesTableReferenceDefinition
implements TableReferenceDefinition {
@Override
public void defineChildTableReferences(
ChildTableReferenceInfoBuilder
childTableReferenceInfoBuilder) {
}
@Override
public void defineParentTableReferences(
ParentTableReferenceInfoBuilder
parentTableReferenceInfoBuilder) {
parentTableReferenceInfoBuilder.referenceInnerJoin(
fromStep -> fromStep.from(
CompanyTable.INSTANCE
).innerJoinON(
PortalPreferencesTable.INSTANCE,
PortalPreferencesTable.INSTANCE.ownerId.eq(
CompanyTable.INSTANCE.companyId
).and(
PortalPreferencesTable.INSTANCE.ownerType.eq(
PortletKeys.PREFS_OWNER_TYPE_COMPANY)
)
)
).referenceInnerJoin(
fromStep -> fromStep.from(
OrganizationTable.INSTANCE
).innerJoinON(
PortalPreferencesTable.INSTANCE,
PortalPreferencesTable.INSTANCE.ownerId.eq(
OrganizationTable.INSTANCE.organizationId
).and(
PortalPreferencesTable.INSTANCE.ownerType.eq(
PortletKeys.PREFS_OWNER_TYPE_ORGANIZATION)
)
)
).referenceInnerJoin(
fromStep -> fromStep.from(
UserTable.INSTANCE
).innerJoinON(
PortalPreferencesTable.INSTANCE,
PortalPreferencesTable.INSTANCE.ownerId.eq(
UserTable.INSTANCE.userId
).and(
PortalPreferencesTable.INSTANCE.ownerType.eq(
PortletKeys.PREFS_OWNER_TYPE_USER)
)
)
);
}
@Override
public BasePersistence> getBasePersistence() {
return _portalPreferencesPersistence;
}
@Override
public PortalPreferencesTable getTable() {
return PortalPreferencesTable.INSTANCE;
}
@Reference
private PortalPreferencesPersistence _portalPreferencesPersistence;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy