Package com.cognifide.slice.commons

Source Code of com.cognifide.slice.commons.SliceModulesFactory

/*-
* #%L
* Slice - Core
* $Id:$
* $HeadURL:$
* %%
* Copyright (C) 2012 Cognifide Limited
* %%
* Licensed 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.
* #L%
*/

package com.cognifide.slice.commons;

import java.util.ArrayList;
import java.util.List;

import org.ops4j.peaberry.Peaberry;
import org.osgi.framework.BundleContext;

import com.cognifide.slice.api.context.ContextScope;
import com.cognifide.slice.core.internal.context.SliceContextScope;
import com.cognifide.slice.core.internal.module.ContextModule;
import com.cognifide.slice.core.internal.module.JcrModule;
import com.cognifide.slice.core.internal.module.LinkModule;
import com.cognifide.slice.core.internal.module.SliceModule;
import com.cognifide.slice.core.internal.module.SliceResourceModule;
import com.cognifide.slice.core.internal.module.SlingModule;
import com.google.inject.Module;

/**
* Factory for all Slice-related modules. It should be used in application's activator to register
* Slice-related modules
*
* @author maciej.majchrzak
*
*/
public class SliceModulesFactory {

  private SliceModulesFactory() {
  }

  /**
   * Creates and returns a list of all Slice-related modules, including framework's internal modules as well
   * as Sling's and JCR's ones. The list includes:<br>
   * <ul>
   * <li>Peaberry module</li>
   * <li>{@link SliceModule}</li>
   * <li>{@link SlingModule}</li>
   * <li>{@link JcrModule}</li>
   * <li>{@link LinkModule}</li>
   * <li>{@link ContextModule}</li>
   * <li>{@link SliceResourceModule}</li>
   * </ul>
   *
   * @return list of Slice-related modules
   */
  public static List<Module> createModules(final BundleContext bundleContext, final String injectorName,
      final String bundleNameFilter, final String basePackage) {
    List<Module> modules = createCoreModules(bundleContext);
    modules.add(createSliceResourceModule(bundleContext, bundleNameFilter, basePackage));
    return modules;
  }

  public static Module createSliceResourceModule(final BundleContext bundleContext,
      final String bundleNameFilter, final String basePackage) {
    return new SliceResourceModule(bundleContext, bundleNameFilter, basePackage);
  }

  public static List<Module> createCoreModules(final BundleContext bundleContext) {
    final ContextScope contextScope = new SliceContextScope();
    List<Module> modules = new ArrayList<Module>();
    modules.add(Peaberry.osgiModule(bundleContext));
    modules.add(new SliceModule(contextScope, bundleContext.getBundle()));
    modules.add(new SlingModule(contextScope));
    modules.add(new JcrModule());
    modules.add(new LinkModule());
    modules.add(new ContextModule());
    return modules;
  }
}
TOP

Related Classes of com.cognifide.slice.commons.SliceModulesFactory

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.