com.merkle.oss.magnolia.powernode.JcrSessionProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magnolia-powernode Show documentation
Show all versions of magnolia-powernode Show documentation
compiles and bundles generated and base classes
package com.merkle.oss.magnolia.powernode;
import javax.jcr.RepositoryException;
import javax.jcr.Session;
public interface JcrSessionProvider {
Session getSession(String workspace) throws RepositoryException;
Session getSystemSession(String workspace) throws RepositoryException;
}