Package org.apache.jackrabbit.rmi.client

Examples of org.apache.jackrabbit.rmi.client.RemoteRuntimeException


     */
    public boolean isMember(Principal member) {
        try {
            return ((RemoteGroup) getRemotePrincipal()).isMember(member.getName());
        } catch (RemoteException re) {
            throw new RemoteRuntimeException(re);
        }
    }
View Full Code Here


                public Principal nextElement() {
                    return pi.next();
                }
            };
        } catch (RemoteException re) {
            throw new RemoteRuntimeException(re);
        }
    }
View Full Code Here

        /** {@inheritDoc} */
        public int getType() {
            try {
                return remote.getType();
            } catch (RemoteException ex) {
                throw new RemoteRuntimeException(ex);
            }
        }
View Full Code Here

        /** {@inheritDoc} */
        public String getUserID() {
            try {
                return remote.getUserID();
            } catch (RemoteException ex) {
                throw new RemoteRuntimeException(ex);
            }
        }
View Full Code Here

    /** {@inheritDoc} */
    public Privilege[] getAggregatePrivileges() {
        try {
            return getFactory().getPrivilege(rp.getAggregatePrivileges());
        } catch (RemoteException re) {
            throw new RemoteRuntimeException(re);
        }
    }
View Full Code Here

    public Privilege[] getDeclaredAggregatePrivileges() {
        try {
            return getFactory().getPrivilege(
                rp.getDeclaredAggregatePrivileges());
        } catch (RemoteException re) {
            throw new RemoteRuntimeException(re);
        }
    }
View Full Code Here

    /** {@inheritDoc} */
    public String getName() {
        try {
            return rp.getName();
        } catch (RemoteException re) {
            throw new RemoteRuntimeException(re);
        }
    }
View Full Code Here

    /** {@inheritDoc} */
    public boolean isAbstract() {
        try {
            return rp.isAbstract();
        } catch (RemoteException re) {
            throw new RemoteRuntimeException(re);
        }
    }
View Full Code Here

    /** {@inheritDoc} */
    public boolean isAggregate() {
        try {
            return rp.isAggregate();
        } catch (RemoteException re) {
            throw new RemoteRuntimeException(re);
        }
    }
View Full Code Here

    public long getSize() throws RemoteRuntimeException {
        if (size == -2) {
            try {
                size = remote.getSize();
            } catch (RemoteException e) {
                throw new RemoteRuntimeException(e);
            }
        }
        return size;
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.rmi.client.RemoteRuntimeException

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.