Skip to content

Commit

Permalink
JCR-2113 : WIP (Contribution by Alfusainey Jallow)
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/trunk@1640892 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
anchela committed Nov 21, 2014
1 parent 10dc451 commit 961bfb7
Show file tree
Hide file tree
Showing 41 changed files with 2,755 additions and 87 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
import org.apache.jackrabbit.spi.NodeInfo;
import org.apache.jackrabbit.spi.Path;
import org.apache.jackrabbit.spi.PathFactory;
import org.apache.jackrabbit.spi.PrivilegeDefinition;
import org.apache.jackrabbit.spi.PropertyId;
import org.apache.jackrabbit.spi.PropertyInfo;
import org.apache.jackrabbit.spi.QNodeDefinition;
Expand Down Expand Up @@ -224,6 +225,11 @@ public int getPollTimeout() {
return 1234;
}

@Override
public <T> T getConfiguration(String name, T defaultValue) {
return null;
}

public RepositoryService getRepositoryService() throws RepositoryException {
return RepositoryServiceImpl.INSTANCE;
}
Expand Down Expand Up @@ -289,6 +295,16 @@ public boolean isGranted(SessionInfo sessionInfo, ItemId itemId, String[] action
return false;
}

@Override
public PrivilegeDefinition[] getPrivilegeDefinitions(SessionInfo sessionInfo) throws RepositoryException {
return new PrivilegeDefinition[0];
}

@Override
public PrivilegeDefinition[] getSupportedPrivileges(SessionInfo sessionInfo, NodeId nodeId) throws RepositoryException {
return new PrivilegeDefinition[0];
}

public QNodeDefinition getNodeDefinition(SessionInfo sessionInfo, NodeId nodeId) throws RepositoryException {
return null;
}
Expand Down
Loading

0 comments on commit 961bfb7

Please sign in to comment.