Package org.impalaframework.facade

Examples of org.impalaframework.facade.InternalOperationsFacade


     * Returns the Impala {@link ModuleManagementFacade} from the OSGi service registry.
     * Will be null if Impala has not been initialised, typically via an Impala {@link BundleActivator} instance.
     */
    public static ModuleManagementFacade getManagementFacade(BundleContext context) {
       
        InternalOperationsFacade facade = ImpalaOsgiUtils.getOperationsFacade(context);
        return facade.getModuleManagementFacade();
    }
View Full Code Here


    }

    public static InternalOperationsFacade getOperationsFacade(BundleContext context) {
       
        ServiceReference serviceReference = context.getServiceReference(OperationsFacade.class.getName());
        InternalOperationsFacade facade = ObjectUtils.cast(context.getService(serviceReference), InternalOperationsFacade.class);
        return facade;
    }
View Full Code Here

   * Returns the Impala {@link ModuleManagementFacade} from the OSGi service registry.
   * Will be null if Impala has not been initialised, typically via an Impala {@link BundleActivator} instance.
   */
  public static ModuleManagementFacade getManagementFacade(BundleContext context) {
   
    InternalOperationsFacade facade = ImpalaOsgiUtils.getOperationsFacade(context);
    return facade.getModuleManagementFacade();
  }
View Full Code Here

  }

  public static InternalOperationsFacade getOperationsFacade(BundleContext context) {
   
    ServiceReference serviceReference = context.getServiceReference(OperationsFacade.class.getName());
    InternalOperationsFacade facade = ObjectUtils.cast(context.getService(serviceReference), InternalOperationsFacade.class);
    return facade;
  }
View Full Code Here

     * Returns the Impala {@link ModuleManagementFacade} from the OSGi service registry.
     * Will be null if Impala has not been initialised, typically via an Impala {@link BundleActivator} instance.
     */
    public static ModuleManagementFacade getManagementFacade(BundleContext context) {
       
        InternalOperationsFacade facade = ImpalaOsgiUtils.getOperationsFacade(context);
        return facade.getModuleManagementFacade();
    }
View Full Code Here

    }

    public static InternalOperationsFacade getOperationsFacade(BundleContext context) {
       
        ServiceReference serviceReference = context.getServiceReference(OperationsFacade.class.getName());
        InternalOperationsFacade facade = ObjectUtils.cast(context.getService(serviceReference), InternalOperationsFacade.class);
        return facade;
    }
View Full Code Here

TOP

Related Classes of org.impalaframework.facade.InternalOperationsFacade

Copyright © 2018 www.massapicom. 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.