2 messages in org.apache.jackrabbit.usersRe: custom adapter to JCR repository
FromSent OnAttachments
Eugeny N DzhurinskyOct 8, 2007 12:41 am 
Marcel ReuteggerOct 23, 2007 6:52 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: custom adapter to JCR repositoryActions...
From:Marcel Reutegger (marc@gmx.net)
Date:Oct 23, 2007 6:52:11 am
List:org.apache.jackrabbit.users

Hi Eugeny,

the jackrabbit spi related modules may be what you are looking for. jackrabbit-spi defines interfaces which are much easier to implement than the javax.jcr.* ones. once you have that you simply put jackrabbit-jcr2spi on top of it and you have a JCR repository. for an example implementation see jackrabbit-spi2jcr which uses JCR repository as a back-end.

regards marcel

Eugeny N Dzhurinsky wrote:

Hello!

We need to integrate legacy repository into JCR served by JackRabbit. We were looking at JackRabbit sources and initially we thought it would be enough to implement custom FileSystem and specify it for repository. However we found it isn't right way, and to save time I would like to ask - what is the proper way for such integration?