Searched refs:bootstrap (Results 1 - 25 of 146) sorted by relevance

123456

/glassfish-3.1.2/web/weld-integration/src/main/java/org/glassfish/weld/
H A DWeldApplicationContainer.java47 import org.jboss.weld.bootstrap.WeldBootstrap;
58 public WeldApplicationContainer(WeldBootstrap bootstrap) { argument
59 weldBootstrap = bootstrap;
H A DWeldActivator.java48 import org.jboss.weld.bootstrap.api.SingletonProvider;
49 import org.jboss.weld.bootstrap.api.helpers.TCCLSingletonProvider;
56 * {@link org.jboss.weld.bootstrap.api.helpers.TCCLSingletonProvider}, where as
H A DBeanManagerNamingProxy.java48 import org.jboss.weld.bootstrap.WeldBootstrap;
49 import org.jboss.weld.bootstrap.spi.BeanDeploymentArchive;
112 WeldBootstrap bootstrap = weldDeployer.getBootstrapForApp(bundle.getApplication());
114 beanManager = bootstrap.getManager(bda);
H A DWebComponentInjectionManager.java53 import org.jboss.weld.bootstrap.WeldBootstrap;
54 import org.jboss.weld.bootstrap.spi.BeanDeploymentArchive;
72 WeldDeployer.WELD_BOOTSTRAP, org.jboss.weld.bootstrap.WeldBootstrap.class);
H A DWeldDeployer.java76 import org.jboss.weld.bootstrap.WeldBootstrap;
77 import org.jboss.weld.bootstrap.api.Environments;
78 import org.jboss.weld.bootstrap.spi.BeanDeploymentArchive;
156 WeldBootstrap bootstrap = (WeldBootstrap)appInfo.getTransientAppMetaData(WELD_BOOTSTRAP,
158 if( bootstrap != null ) {
176 bootstrap.startContainer(Environments.SERVLET, deploymentImpl/*, new ConcurrentHashMapBeanStore()*/);
177 bootstrap.startInitialization();
178 fireProcessInjectionTargetEvents(bootstrap, deploymentImpl);
179 bootstrap.deployBeans();
195 WeldBootstrap bootstrap
253 fireProcessInjectionTargetEvents(WeldBootstrap bootstrap, DeploymentImpl impl) argument
300 firePITEvent(WeldBootstrap bootstrap, BeanDeploymentArchive bda, Class<?> bdaClazz) argument
[all...]
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/
H A DASMain.java41 package com.sun.enterprise.glassfish.bootstrap;
H A DConfigurator.java41 package com.sun.enterprise.glassfish.bootstrap;
H A DEmbeddedMain.java41 package com.sun.enterprise.glassfish.bootstrap;
44 import com.sun.enterprise.module.bootstrap.BootException;
45 import com.sun.enterprise.module.bootstrap.Main;
46 import com.sun.enterprise.module.bootstrap.StartupContext;
H A DConstants.java41 package com.sun.enterprise.glassfish.bootstrap;
50 public static final String ARGS_PROP = "com.sun.enterprise.glassfish.bootstrap.args";
H A DGlassFishRuntimeDecorator.java42 package com.sun.enterprise.glassfish.bootstrap;
H A DStartupContextUtil.java41 package com.sun.enterprise.glassfish.bootstrap;
43 import com.sun.enterprise.module.bootstrap.StartupContext;
53 * {@link com.sun.enterprise.module.bootstrap.StartupContext}.
H A DConfiguratorImpl.java41 package com.sun.enterprise.glassfish.bootstrap;
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/osgi/
H A DEmbeddedOSGiGlassFishRuntime.java42 package com.sun.enterprise.glassfish.bootstrap.osgi;
44 import com.sun.enterprise.glassfish.bootstrap.ASMainHelper;
45 import com.sun.enterprise.glassfish.bootstrap.GlassFishImpl;
47 import com.sun.enterprise.module.bootstrap.BootException;
48 import com.sun.enterprise.module.bootstrap.Main;
49 import com.sun.enterprise.module.bootstrap.ModuleStartup;
50 import com.sun.enterprise.module.bootstrap.StartupContext;
118 final String installRootValue = properties.getProperty(com.sun.enterprise.glassfish.bootstrap.Constants.INSTALL_ROOT_PROP_NAME);
121 System.setProperty(com.sun.enterprise.glassfish.bootstrap.Constants.INSTALL_ROOT_PROP_NAME, installRoot.getAbsolutePath());
126 System.setProperty(com.sun.enterprise.glassfish.bootstrap
[all...]
H A DConstants.java42 package com.sun.enterprise.glassfish.bootstrap.osgi;
H A DOSGiGlassFishImpl.java42 package com.sun.enterprise.glassfish.bootstrap.osgi;
44 import com.sun.enterprise.glassfish.bootstrap.GlassFishDecorator;
H A DEmbeddedOSGiGlassFishRuntimeBuilder.java42 package com.sun.enterprise.glassfish.bootstrap.osgi;
44 import com.sun.enterprise.glassfish.bootstrap.Constants;
H A DOSGiGlassFishRuntime.java42 package com.sun.enterprise.glassfish.bootstrap.osgi;
44 import com.sun.enterprise.module.bootstrap.ModuleStartup;
55 * framework during bootstrap and hence can stop it upon shutdown.
H A DGlassFishMainActivator.java42 package com.sun.enterprise.glassfish.bootstrap.osgi;
44 import com.sun.enterprise.glassfish.bootstrap.Constants;
57 import static com.sun.enterprise.glassfish.bootstrap.osgi.Constants.AUTO_INSTALL_PROP;
58 import static com.sun.enterprise.glassfish.bootstrap.osgi.Constants.AUTO_START_PROP;
110 gfr = GlassFishRuntime.bootstrap(bsProperties, getClass().getClassLoader());
/glassfish-3.1.2/common/simple-glassfish-api/src/main/java/org/glassfish/embeddable/
H A DGlassFishRuntime.java52 * This is the entry point API to bootstrap GlassFish.
62 * GlassFishRuntime runtime = GlassFishRuntime.bootstrap(); // no active services
83 public static GlassFishRuntime bootstrap() throws GlassFishException { method in class:GlassFishRuntime
84 return bootstrap(new BootstrapProperties(), GlassFishRuntime.class.getClassLoader());
90 * calling {@link #bootstrap(BootstrapProperties , ClassLoader)} with null as second argument.
95 public static GlassFishRuntime bootstrap(BootstrapProperties bootstrapProperties) throws GlassFishException { method in class:GlassFishRuntime
96 return bootstrap(bootstrapProperties, GlassFishRuntime.class.getClassLoader());
109 public static GlassFishRuntime bootstrap(BootstrapProperties bootstrapProperties, ClassLoader cl) throws GlassFishException { method in class:GlassFishRuntime
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/
H A DVerifierModuleStartup.java44 import com.sun.enterprise.module.bootstrap.ModuleStartup;
45 import com.sun.enterprise.module.bootstrap.StartupContext;
/glassfish-3.1.2/tests/utils/src/main/java/org/glassfish/tests/utils/
H A DUtils.java43 import com.sun.enterprise.module.bootstrap.Populator;
44 import com.sun.enterprise.module.bootstrap.StartupContext;
118 p.put(com.sun.enterprise.glassfish.bootstrap.Constants.INSTALL_ROOT_PROP_NAME, System.getProperty("java.io.tmpdir"));
119 p.put(com.sun.enterprise.glassfish.bootstrap.Constants.INSTANCE_ROOT_PROP_NAME, System.getProperty("java.io.tmpdir"));
/glassfish-3.1.2/cluster/gms-adapter/src/main/java/org/glassfish/gms/admin/
H A DGMSAnnounceSupplementalInfo.java44 import org.glassfish.gms.bootstrap.GMSAdapter;
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/
H A DACCStartupContext.java43 import com.sun.enterprise.glassfish.bootstrap.ASMainHelper;
44 import com.sun.enterprise.module.bootstrap.StartupContext;
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/
H A DServerEnvironment.java43 import com.sun.enterprise.module.bootstrap.StartupContext;
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DDomainCreationStartup.java43 import com.sun.enterprise.module.bootstrap.*;

Completed in 924 milliseconds

123456