📄 clientrepository.java
字号:
/* * 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.client;import java.rmi.RemoteException;import javax.jcr.Credentials;import javax.jcr.Repository;import javax.jcr.RepositoryException;import javax.jcr.Session;import org.apache.jackrabbit.rmi.remote.RemoteRepository;import org.apache.jackrabbit.rmi.remote.RemoteSession;/** * Local adapter for the JCR-RMI * {@link org.apache.jackrabbit.rmi.remote.RemoteRepository RemoteRepository} * inteface. This class makes a remote repository locally available using * the JCR {@link javax.jcr.Repository Repository} interface. * * @author Jukka Zitting * @see javax.jcr.Repository * @see org.apache.jackrabbit.rmi.remote.RemoteRepository */public class ClientRepository extends ClientObject implements Repository { /** The adapted remote repository. */ private RemoteRepository remote; /** * Creates a client adapter for the given remote repository. * * @param remote remote repository * @param factory local adapter factory */ public ClientRepository( RemoteRepository remote, LocalAdapterFactory factory) { super(factory); this.remote = remote; } /** {@inheritDoc} */ public String getDescriptor(String name) { try { return remote.getDescriptor(name); } catch (RemoteException ex) { throw new RemoteRuntimeException(ex); } } /** {@inheritDoc} */ public String[] getDescriptorKeys() { try { return remote.getDescriptorKeys(); } catch (RemoteException ex) { throw new RemoteRuntimeException(ex); } } /** {@inheritDoc} */ public Session login() throws RepositoryException { try { RemoteSession session = remote.login(); return getFactory().getSession(this, session); } catch (RemoteException ex) { throw new RemoteRepositoryException(ex); } } /** {@inheritDoc} */ public Session login(String workspace) throws RepositoryException { try { RemoteSession session = remote.login(workspace); return getFactory().getSession(this, session); } catch (RemoteException ex) { throw new RemoteRepositoryException(ex); } } /** {@inheritDoc} */ public Session login(Credentials credentials) throws RepositoryException { try { RemoteSession session = remote.login(credentials); return getFactory().getSession(this, session); } catch (RemoteException ex) { throw new RemoteRepositoryException(ex); } } /** {@inheritDoc} */ public Session login(Credentials credentials, String workspace) throws RepositoryException { try { RemoteSession session = remote.login(credentials, workspace); return getFactory().getSession(this, session); } catch (RemoteException ex) { throw new RemoteRepositoryException(ex); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -