Package org.apache.jackrabbit.oak.api

Examples of org.apache.jackrabbit.oak.api.RepositoryService.login()


    public Session login(Credentials credentials, String workspaceName) throws RepositoryException {
        // TODO: needs complete refactoring

        RepositoryService service = context.getInstance(RepositoryService.class);
        try {
            Connection connection = service.login(credentials, workspaceName);
            return new SessionImpl(context, connection);
        } catch (LoginException e) {
            throw new javax.jcr.LoginException(e.getMessage());
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.