/* * 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.exoplatform.services.jcr.ext.registry; import org.exoplatform.services.jcr.config.RepositoryConfigurationException; import org.exoplatform.services.jcr.ext.common.NodeWrapper; import org.exoplatform.services.jcr.ext.common.SessionProvider; import javax.jcr.Node; import javax.jcr.PathNotFoundException; import javax.jcr.RepositoryException; /** * Created by The eXo Platform SAS<br> * JCR based Services Registry abstraction. As interchange object all the methods use Nodes' * wrappers to not to let using an arbitrary Type of Node. There is 2 phase modification of * RegistryEntry (1) get or create RegistryEntry retrieves or creates new object in memory and (2) * register/unregister stores the object permanently * * @author Gennady Azarenkov * @LevelAPI Unsupported */ public abstract class Registry { /** * Returns the registry node which wraps a node of type "exo:registry" (the whole registry tree) * * @param sessionProvider * @return registry node object * @throws RepositoryException * @throws RepositoryConfigurationException */ public abstract RegistryNode getRegistry(SessionProvider sessionProvider) throws RepositoryConfigurationException, RepositoryException; /** * Returns the corresponding registry entry which wraps a node of type "exo:registryEntry" * * @param sessionProvider * @param entryPath * @return the corresponding RegistryEntry * @throws PathNotFoundException * if entry not found * @throws RepositoryException */ public abstract RegistryEntry getEntry(SessionProvider sessionProvider, String entryPath) throws PathNotFoundException, RepositoryException; /** * Creates an entry in the group. In a case the group does not exist already it will be automatically * created. * * @param sessionProvider * @param groupPath * related path (w/o leading slash) to group * @param entry * @throws RepositoryException */ public abstract void createEntry(SessionProvider sessionProvider, String groupPath, RegistryEntry entry) throws RepositoryException; /** * Updates an entry in the group * * @param sessionProvider * @param groupPath * related path (w/o leading slash) to group * @param entry * @throws RepositoryException */ public abstract void recreateEntry(SessionProvider sessionProvider, String groupPath, RegistryEntry entry) throws RepositoryException; /** * Removes the entry at the given absolute path (concatenation of group path / entry name) * * @param sessionProvider * @param entryPath * related path (w/o leading slash) to entry * @throws RepositoryException */ public abstract void removeEntry(SessionProvider sessionProvider, String entryPath) throws RepositoryException; /** * Internal Node wrapper which ensures the node of "exo:registry" type inside * @LevelAPI Unsupported */ public final class RegistryNode extends NodeWrapper { protected RegistryNode(final Node node) throws RepositoryException { super(node); } } }