Package com.sun.enterprise.server.pluggable

Examples of com.sun.enterprise.server.pluggable.InternalServicesList


    instantiateRuntimeServices(
        final ServerContext serverContext,
        final String[][]    defaultServices )
            throws ServerLifecycleException {
        if (onDemandStartup) {
            InternalServicesList services = serverContext.getPluggableFeatureFactory().getInternalServicesList();
            final InternalServicesList ondemandservices = new OnDemandServices();
            final String[][] servicesByName = services.getServicesByName();
            final String[][] odsByName = ondemandservices.getServicesByName();
            if (servicesByName == null) {
               _logger.log(Level.SEVERE, "services.null");
               throw new ServerLifecycleException();
            }
View Full Code Here


                }
            }
            );

  //added the pluggable interface way of getting the list of services
  final InternalServicesList servicesList =
    context.getPluggableFeatureFactory().getInternalServicesList();

  final String[][] servicesByName = servicesList.getServicesByName();
  if (servicesByName == null) {
        _logger.log(Level.SEVERE, "services.null");
        throw new ServerLifecycleException();
  }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.server.pluggable.InternalServicesList

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.