Package org.apache.jackrabbit.rmi.remote

Examples of org.apache.jackrabbit.rmi.remote.RemoteIterator


    }

    /** {@inheritDoc} */
    public Enumeration<? extends Principal> members() {
        try {
            final RemoteIterator remote = ((RemoteGroup) getRemotePrincipal()).members();
            final Iterator<Principal> pi = factory.getPrincipalIterator(remote);
            return new Enumeration<Principal>() {
                public boolean hasMoreElements() {
                    return pi.hasNext();
                }
View Full Code Here


    }

    /** {@inheritDoc} */
    public NodeIterator merge(Node activityNode) throws RepositoryException {
        try {
            RemoteIterator iterator = remote.merge(activityNode.getIdentifier());
            return getFactory().getNodeIterator(session, iterator);
        } catch (RemoteException e) {
            throw new RemoteRepositoryException(e);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.rmi.remote.RemoteIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.