📄 remoterepository.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.remote;import java.rmi.Remote;import java.rmi.RemoteException;import javax.jcr.Credentials;import javax.jcr.RepositoryException;/** * Remote version of the JCR {@link javax.jcr.Repository Repository} interface. * Used by the * {@link org.apache.jackrabbit.rmi.server.ServerRepository ServerRepository} * and * {@link org.apache.jackrabbit.rmi.client.ClientRepository ClientRepository} * adapters to provide transparent RMI access to remote repositories.* <p> * The methods in this interface are documented only with a reference * to a corresponding Repository method. The remote object will simply * forward the method call to the underlying Repository instance. * {@link javax.jcr.Session Session} objects are returned as remote references * to the {@link RemoteSession RemoteSession} interface. Simple return * values and possible exceptions are copied over the network to the client. * RMI errors are signalled with RemoteExceptions. * * @author Jukka Zitting * @see javax.jcr.Repository * @see org.apache.jackrabbit.rmi.client.ClientRepository * @see org.apache.jackrabbit.rmi.server.ServerRepository */public interface RemoteRepository extends Remote { /** * Remote version of the * {@link javax.jcr.Repository#getDescriptor(String) Repository.getDescriptor(String)} * method. * * @param key descriptor key * @return descriptor value * @throws RemoteException on RMI errors */ String getDescriptor(String key) throws RemoteException; /** * Remote version of the * {@link javax.jcr.Repository#getDescriptorKeys() Repository.getDescriptorKeys()} * method. * * @return descriptor keys * @throws RemoteException on RMI errors */ String[] getDescriptorKeys() throws RemoteException; /** * Remote version of the * {@link javax.jcr.Repository#login() Repository.login(}} method. * * @return remote session * @throws RepositoryException on repository errors * @throws RemoteException on RMI errors */ RemoteSession login() throws RepositoryException, RemoteException; /** * Remote version of the * {@link javax.jcr.Repository#login(String) Repository.login(String}} * method. * * @param workspace workspace name * @return remote session * @throws RepositoryException on repository errors * @throws RemoteException on RMI errors */ RemoteSession login(String workspace) throws RepositoryException, RemoteException; /** * Remote version of the * {@link javax.jcr.Repository#login(Credentials) Repository.login(Credentials}} * method. * * @param credentials client credentials * @return remote session * @throws RepositoryException on repository errors * @throws RemoteException on RMI errors */ RemoteSession login(Credentials credentials) throws RepositoryException, RemoteException; /** * Remote version of the * {@link javax.jcr.Repository#login(Credentials,String) Repository.login(Credentials,String}} * method. * * @param credentials client credentials * @param workspace workspace name * @return remote session * @throws RepositoryException on repository errors * @throws RemoteException on RMI errors */ RemoteSession login(Credentials credentials, String workspace) throws RepositoryException, RemoteException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -