Package org.apache.jackrabbit.standalone.cli.ext

Source Code of org.apache.jackrabbit.standalone.cli.ext.StartJackrabbit

/*
* 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.standalone.cli.ext;

import javax.jcr.Repository;

import org.apache.commons.chain.Command;
import org.apache.commons.chain.Context;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.jackrabbit.core.RepositoryImpl;
import org.apache.jackrabbit.core.config.RepositoryConfig;
import org.apache.jackrabbit.standalone.cli.CommandHelper;

/**
* Set a new Jackrabbit instance as the current working <code>Repository</code>
*/
public class StartJackrabbit implements Command {
    /** logger */
    private static Log log = LogFactory.getLog(StartJackrabbit.class);

    /** config file */
    private String configKey = "config";

    /** home folder */
    private String homeKey = "home";

    /**
     * {@inheritDoc}
     */
    public boolean execute(Context ctx) throws Exception {
        String config = (String) ctx.get(this.configKey);
        String home = (String) ctx.get(this.homeKey);
        if (log.isDebugEnabled()) {
            log
                    .debug("starting jackrabbit. config=" + config + " home="
                            + home);
        }
        RepositoryConfig conf = RepositoryConfig.create(config, home);
        Repository repo = RepositoryImpl.create(conf);
        CommandHelper.setRepository(ctx, repo, "local " + home);
        return false;
    }

    /**
     * @return the config key
     */
    public String getConfigKey() {
        return configKey;
    }

    /**
     * @param configKey
     *            the config key to set
     */
    public void setConfigKey(String configKey) {
        this.configKey = configKey;
    }

    /**
     * @return the home key
     */
    public String getHomeKey() {
        return homeKey;
    }

    /**
     * @param homeKey
     *            the home key to set
     */
    public void setHomeKey(String homeKey) {
        this.homeKey = homeKey;
    }

}
TOP

Related Classes of org.apache.jackrabbit.standalone.cli.ext.StartJackrabbit

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.