All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jackrabbit.rmi.server.ServerRepository Maven / Gradle / Ivy

Go to download

JCR-RMI is a transparent Remote Method Invocation (RMI) layer for the Content Repository for Java Technology API (JCR). The layer makes it possible to remotely access JCR content repositories.

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.jackrabbit.rmi.server;

import java.rmi.RemoteException;

import javax.jcr.Credentials;
import javax.jcr.Repository;
import javax.jcr.RepositoryException;
import javax.jcr.Session;
import javax.jcr.Value;

import org.apache.jackrabbit.rmi.remote.RemoteRepository;
import org.apache.jackrabbit.rmi.remote.RemoteSession;
import org.apache.jackrabbit.rmi.value.SerialValueFactory;

/**
 * @deprecated RMI support is deprecated and will be removed in a future version of Jackrabbit; see Jira ticket JCR-4972 for more information.
 * 

* Remote adapter for the JCR {@link javax.jcr.Repository Repository} * interface. This class makes a local repository available as an RMI service * using the * {@link org.apache.jackrabbit.rmi.remote.RemoteRepository RemoteRepository} * interface. * * @see javax.jcr.Repository * @see org.apache.jackrabbit.rmi.remote.RemoteRepository */ @Deprecated(forRemoval = true) public class ServerRepository extends ServerObject implements RemoteRepository { /** The adapted local repository. */ private Repository repository; /** * Creates a remote adapter for the given local repository. * * @param repository local repository * @param factory remote adapter factory * @throws RemoteException on RMI errors */ public ServerRepository( Repository repository, RemoteAdapterFactory factory) throws RemoteException { super(factory); this.repository = repository; } /** {@inheritDoc} */ public String getDescriptor(String name) throws RemoteException { return repository.getDescriptor(name); } /** {@inheritDoc} */ public String[] getDescriptorKeys() throws RemoteException { return repository.getDescriptorKeys(); } /** {@inheritDoc} */ public RemoteSession login() throws RepositoryException, RemoteException { try { Session session = repository.login(); return getFactory().getRemoteSession(session); } catch (RepositoryException ex) { throw getRepositoryException(ex); } } /** {@inheritDoc} */ public RemoteSession login(String workspace) throws RepositoryException, RemoteException { try { Session session = repository.login(workspace); return getFactory().getRemoteSession(session); } catch (RepositoryException ex) { throw getRepositoryException(ex); } } /** {@inheritDoc} */ public RemoteSession login(Credentials credentials) throws RepositoryException, RemoteException { try { Session session = repository.login(credentials); return getFactory().getRemoteSession(session); } catch (RepositoryException ex) { throw getRepositoryException(ex); } } /** {@inheritDoc} */ public RemoteSession login(Credentials credentials, String workspace) throws RepositoryException, RemoteException { try { Session session = repository.login(credentials, workspace); return getFactory().getRemoteSession(session); } catch (RepositoryException ex) { throw getRepositoryException(ex); } } /** {@inheritDoc} */ public Value getDescriptorValue(String key) throws RemoteException { try { return SerialValueFactory.makeSerialValue(repository.getDescriptorValue(key)); } catch (RepositoryException ex) { throw new RemoteException(ex.getMessage(), ex); } } /** {@inheritDoc} */ public Value[] getDescriptorValues(String key) throws RemoteException { try { return SerialValueFactory.makeSerialValueArray(repository.getDescriptorValues(key)); } catch (RepositoryException ex) { throw new RemoteException(ex.getMessage(), ex); } } /** {@inheritDoc} */ public boolean isSingleValueDescriptor(String key) throws RemoteException { return repository.isSingleValueDescriptor(key); } /** {@inheritDoc} */ public boolean isStandardDescriptor(String key) throws RemoteException { return repository.isStandardDescriptor(key); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy