/** * Copyright (C) 2009 eXo Platform SAS. * * This 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 software 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 software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.gatein.mop.core.api.workspace; import org.chromattic.api.RelationshipType; import org.chromattic.api.annotations.OneToOne; import org.chromattic.api.annotations.MappedBy; import org.chromattic.api.annotations.FindById; import org.chromattic.api.annotations.Owner; import org.chromattic.api.annotations.PrimaryType; import org.gatein.mop.api.workspace.Workspace; import org.gatein.mop.api.workspace.Site; import org.gatein.mop.api.workspace.ObjectType; import org.gatein.mop.api.workspace.WorkspaceCustomizationContext; import org.gatein.mop.api.content.CustomizationContext; import org.gatein.mop.api.content.Customization; import org.gatein.mop.api.content.ContentType; import java.util.Collection; /** * @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a> * @version $Revision$ */ @PrimaryType(name = "mop:workspace") public abstract class WorkspaceImpl extends WorkspaceObjectImpl implements Workspace { public ObjectType<? extends Workspace> getObjectType() { return ObjectType.WORKSPACE; } // Abstract ********************************************************************************************************** @OneToOne @MappedBy("mop:portalsites") @Owner public abstract PortalSiteContainer getPortalSites(); @OneToOne @MappedBy("mop:groupsites") @Owner public abstract GroupSiteContainer getGroupSites(); @OneToOne @MappedBy("mop:usersites") @Owner public abstract UserSiteContainer getUserSites(); @OneToOne(type = RelationshipType.EMBEDDED) @Owner public abstract WorkspaceCustomizationContextImpl getCustomizationContext(); // CustomizationContextResolver implementation *********************************************************************** @FindById public abstract CustomizationContext resolveContext(String contextId); // Workspace implementation ****************************************************************************************** @SuppressWarnings("unchecked") private <S extends Site> SiteContainer getSiteContainer(ObjectType<S> siteType) { if (siteType == ObjectType.PORTAL_SITE) { return getPortalSites(); } else if (siteType == ObjectType.GROUP_SITE) { return getGroupSites(); } else if (siteType == ObjectType.USER_SITE) { return getUserSites(); } else { throw new UnsupportedOperationException(); } } public <S extends Site> S getSite(ObjectType<S> siteType, String siteName) { SiteContainer sites = getSiteContainer(siteType); return (S)sites.getSite(siteName); } public Collection<Site> getSites() { throw new UnsupportedOperationException(); } public <S extends Site> Collection<S> getSites(ObjectType<S> siteType) { SiteContainer sites = getSiteContainer(siteType); return sites.getAllSites(); } public <S extends Site> S addSite(ObjectType<S> siteType, String name) { SiteContainer sites = getSiteContainer(siteType); return (S)sites.addSite(name); } }