blob: 4e1cb5795da41020dc89d14b7b0cf562f636ba07 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jackrabbit.ocm.manager.impl;
import org.apache.jackrabbit.ocm.exception.CustomNodeTypeCreationException;
import org.apache.jackrabbit.ocm.manager.CustomNodeTypeCreator;
import org.apache.jackrabbit.ocm.manager.ObjectContentManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** Default implementation of the jackrabbit custom node creator.
*
* @author <a href="mailto:okiessler@apache.org">Oliver Kiessler</a>
* @version $Id: Exp $
*/
public class CustomNodeTypeCreatorImpl implements CustomNodeTypeCreator {
/** Logger.
*/
private final static Logger log = LoggerFactory.getLogger(CustomNodeTypeCreatorImpl.class);
/** Session to the jcr repository.
*/
private ObjectContentManagerImpl jcrSession;
/** Creates a new instance of CustomNodeTypeCreatorImpl. */
public CustomNodeTypeCreatorImpl()
{
}
/** Creates a new instance of CustomNodeTypeCreatorImpl with a jcr session.
* @param jcrSession JcrSession
*/
public CustomNodeTypeCreatorImpl(ObjectContentManagerImpl jcrSession)
{
this.jcrSession = jcrSession;
}
/** This method is supposed to create custom node types on repository
* setup.
*
* @throws org.apache.jackrabbit.ocm.exception.CustomNodeTypeCreationException
* @return true/false
*/
public boolean createInitialJcrCustomNodeTypes() throws CustomNodeTypeCreationException
{
// TODO
return true;
}
/** Method to add a jcr custom node type to an existing jcr repository.
*
* @throws org.apache.jackrabbit.ocm.exception.CustomNodeTypeCreationException
* @return true/false
*/
public boolean addJcrCustomNodeType() throws CustomNodeTypeCreationException
{
// TODO
return false;
}
/** Setter for property jcrSession.
*
* @param jcrSession JcrSession
*/
public void setJcrSession(ObjectContentManagerImpl jcrSession)
{
this.jcrSession = jcrSession;
}
/** Getter for property jcrSession.
*
* @return jcrSession
*/
public ObjectContentManager getJcrSession()
{
return jcrSession;
}
}