Package org.jboss.gravia.provision

Source Code of org.jboss.gravia.provision.DefaultProvisioner

/*
* #%L
* JBossOSGi Provision: Core
* %%
* Copyright (C) 2013 JBoss by Red Hat
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 2.1 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program.  If not, see
* <http://www.gnu.org/licenses/lgpl-2.1.html>.
* #L%
*/
package org.jboss.gravia.provision;

import org.jboss.gravia.provision.spi.AbstractProvisioner;
import org.jboss.gravia.repository.Repository;
import org.jboss.gravia.resolver.DefaultPreferencePolicy;
import org.jboss.gravia.resolver.Environment;
import org.jboss.gravia.resolver.PreferencePolicy;
import org.jboss.gravia.resolver.Resolver;

/**
* The default {@link Provisioner}
*
* @author thomas.diesler@jboss.com
* @since 06-May-2013
*/
public class DefaultProvisioner extends AbstractProvisioner {

    public DefaultProvisioner(Environment environment, Resolver resolver, Repository repository, ResourceInstaller installer) {
        super(environment, resolver, repository, installer, new DefaultPreferencePolicy(null));
    }

    public DefaultProvisioner(Environment environment, Resolver resolver, Repository repository, ResourceInstaller installer, PreferencePolicy policy) {
        super(environment, resolver, repository, installer, policy);
    }
}
TOP

Related Classes of org.jboss.gravia.provision.DefaultProvisioner

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.