126 lines
3.6 KiB
Java
126 lines
3.6 KiB
Java
/*
|
|
* Copyright (C) 2017 LibreCCM Foundation.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301 USA
|
|
*/
|
|
package org.librecms.pages;
|
|
|
|
import org.libreccm.categorization.Domain;
|
|
import org.libreccm.sites.SiteAwareApplication;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Objects;
|
|
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.JoinColumn;
|
|
import javax.persistence.NamedQueries;
|
|
import javax.persistence.NamedQuery;
|
|
import javax.persistence.OneToOne;
|
|
import javax.persistence.Table;
|
|
|
|
import static org.librecms.CmsConstants.*;
|
|
|
|
/**
|
|
* The {@code Pages} application. Each instance of this application provides the
|
|
* page tree for a specific site.
|
|
*
|
|
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
|
|
*/
|
|
@Entity
|
|
@Table(name = "PAGES_APP", schema = DB_SCHEMA)
|
|
@NamedQueries({
|
|
@NamedQuery(
|
|
name = "Pages.findForSite",
|
|
query = "SELECT p FROM Pages p JOIN p.site s "
|
|
+ "WHERE s.domainOfSite = :domain")
|
|
,
|
|
@NamedQuery(
|
|
name = "Pages.findForDefaultSite",
|
|
query = "SELECT p FROM Pages p JOIN p.site s "
|
|
+ "WHERE s.defaultSite = true"
|
|
)
|
|
,
|
|
@NamedQuery(
|
|
name = "Pages.availableForSite",
|
|
query = "SELECT (CASE WHEN COUNT(s) > 0 THEN true ELSE false END) "
|
|
+ "FROM Pages p JOIN p.site s "
|
|
+ "WHERE s.domainOfSite = :domain")
|
|
,
|
|
@NamedQuery(
|
|
name = "Pages.availableForDefaultSite",
|
|
query = "SELECT (CASE WHEN COUNT(p) > 0 THEN true ELSE false END) "
|
|
+ "FROM Pages p JOIN p.site s "
|
|
+ "WHERE s.defaultSite = true")
|
|
})
|
|
public class Pages extends SiteAwareApplication implements Serializable {
|
|
|
|
private static final long serialVersionUID = -352205318143692477L;
|
|
|
|
/**
|
|
* The category {@link Domain} which is used to create the page tree.
|
|
*/
|
|
@OneToOne
|
|
@JoinColumn(name = "CATEGORY_DOMAIN_ID")
|
|
private Domain categoryDomain;
|
|
|
|
public Domain getCategoryDomain() {
|
|
return categoryDomain;
|
|
}
|
|
|
|
protected void setCategoryDomain(Domain categoryDomain) {
|
|
this.categoryDomain = categoryDomain;
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
int hash = 7;
|
|
hash = 17 * hash + Objects.hashCode(categoryDomain);
|
|
return hash;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(final Object obj) {
|
|
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
|
|
if (obj == null) {
|
|
return false;
|
|
}
|
|
|
|
if (!super.equals(obj)) {
|
|
return false;
|
|
}
|
|
|
|
if (!(obj instanceof Pages)) {
|
|
return false;
|
|
}
|
|
|
|
final Pages other = (Pages) obj;
|
|
if (!other.canEqual(this)) {
|
|
return false;
|
|
}
|
|
|
|
return Objects.equals(categoryDomain, other.getCategoryDomain());
|
|
}
|
|
|
|
@Override
|
|
public boolean canEqual(final Object obj) {
|
|
return obj instanceof Pages;
|
|
}
|
|
}
|