Searched refs:Engine (Results 1 - 25 of 42) sorted by relevance

12

/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/
H A DModule.java63 List<Engine> getEngines();
71 Engine getEngine(String snifferType);
75 public static Engine getEngine(Module instance, String snifferName) {
76 for (Engine engine : instance.getEngines()) {
H A DEngine.java74 public interface Engine extends ConfigBeanProxy, Injectable, PropertyBag { interface in inherits:ConfigBeanProxy,Injectable,PropertyBag
147 public static ApplicationConfig getApplicationConfig(Engine instance) {
152 public static void setApplicationConfig(Engine instance, ApplicationConfig config) {
158 final Engine instance, final Class<T> configType) throws TransactionFailure {
159 return (T) ConfigSupport.apply(new SingleConfigCode<Engine>() {
161 public Object run(Engine e) throws PropertyVetoException, TransactionFailure {
H A DApplication.java264 * {@link Engine }
267 List<Engine> getEngine();
428 List<Engine> engineList = new ArrayList<Engine>();
438 for (Engine engine : engineList) {
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/pwc/
H A DPwcWebContainer.java43 import org.apache.catalina.Engine;
56 private Engine _engine = null;
105 public Engine getEngine() {
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DEngine.java62 * An <b>Engine</b> is a Container that represents the entire Catalina servlet
70 * In general, you would not use an Engine when deploying Catalina connected
75 * The child containers attached to an Engine are generally implementations
77 * an individual servlet context), depending upon the Engine implementation.
79 * If used, an Engine is always the top level Container in a Catalina
87 public interface Engine extends Container { interface in inherits:Container
94 * Return the default hostname for this Engine.
100 * Set the default hostname for this Engine.
116 * @param jvmRouteId the (new) JVM Route ID. Each Engine within a cluster
131 * @param service The service that owns this Engine
[all...]
/glassfish-3.1.2/common/amx-config/src/main/java/org/glassfish/admin/amx/intf/config/
H A DEngine.java46 public interface Engine interface in inherits:AMXConfigProxy,Description,PropertiesAccess
H A DApplication.java85 public Map<String, Engine> getEngine();
/glassfish-3.1.2/deployment/admin/src/test/java/org/glassfish/deployment/admin/
H A DListComponentsCommandTest.java73 Engine eng = new EngineTest();
75 List<Engine> engines = new ArrayList<Engine>();
96 Engine eng1 = new EngineTest();
98 Engine eng2 = new EngineTest();
100 List<Engine> engines = new ArrayList<Engine>();
177 private List<Engine> engineList = null;
179 public List<Engine> getEngines() {
182 public Engine getEngin
[all...]
/glassfish-3.1.2/web/gui-plugin-common/src/main/java/org/glassfish/web/plugin/common/
H A DSetWebContextParamCommand.java43 import com.sun.enterprise.config.serverbeans.Engine;
82 final Engine engine = engine(report);
92 private void setContextParam(final Engine owningEngine,
119 final Engine owningEngine,
126 ConfigSupport.apply(new SingleConfigCode<Engine>() {
129 public Object run(Engine e) throws PropertyVetoException, TransactionFailure {
H A DSetWebEnvEntryCommand.java43 import com.sun.enterprise.config.serverbeans.Engine;
86 final Engine engine = engine(report);
98 private void setEnvEntry(final Engine owningEngine,
138 private void createEnvEntryOnNewWMC(final Engine owningEngine,
145 ConfigSupport.apply(new SingleConfigCode<Engine>() {
148 public Object run(Engine e) throws PropertyVetoException, TransactionFailure {
H A DWebModuleConfig.java44 import com.sun.enterprise.config.serverbeans.Engine;
186 static WebModuleConfig webModuleConfig(final Engine engine) {
H A DWebModuleConfigCommand.java45 import com.sun.enterprise.config.serverbeans.Engine;
159 protected Engine engine(final ActionReport report) {
165 Engine e = module.getEngine(WEB_SNIFFER_TYPE);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/
H A DEngineConfig.java70 * Startup event listener for a <b>Engine</b> that configures the properties
71 * of that Engine, and the associated defined contexts.
101 * The Engine we are associated with.
103 private Engine engine = null;
131 * Process the START event for an associated Engine.
139 engine = (Engine) event.getLifecycle();
163 * Log a message on the Logger associated with our Engine (if any)
183 * Log a message on the Logger associated with our Engine (if any)
203 * Process a "start" event for this Engine.
214 * Process a "stop" event for this Engine
[all...]
H A DEmbedded.java95 * <li>Call <code>createEngine()</code> to create an Engine object, and then
98 * associated with the newly created Engine, and then call its property
100 * corresponding Engine with <code>engine.addChild(host)</code>.</li>
108 * <li>Call <code>addEngine()</code> to attach this Engine to the set of
114 * the most recently added Engine to process its received requests.</li>
116 * will typically be only one Engine instance created).</li>
190 protected Engine engines[] = new Engine[0];
382 * added Connector will be associated with the most recently added Engine.
401 * most recently added Engine
[all...]
/glassfish-3.1.2/deployment/admin/src/main/java/org/glassfish/deployment/admin/
H A DListComponentsCommand.java220 List <Engine> engineList = getAppEngines(app);
221 for (Engine engine : engineList) {
249 private String getSniffers(final List<Engine> engineList,
252 for (Engine engine : engineList) {
278 private List<Engine> getAppEngines(final Application app) {
279 final List<Engine> engineList = new ArrayList<Engine>();
H A DListAppRefsCommand.java53 import com.sun.enterprise.config.serverbeans.Engine;
128 final List<Engine> engineList = module.getEngines();
129 for (Engine engine : engineList) {
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/mbeans/
H A DMBeanUtils.java211 } else if (container instanceof Engine) {
261 } else if (container instanceof Engine) {
310 } else if (container instanceof Engine) {
340 } else if (container instanceof Engine) {
350 * <code>Engine</code> object.
353 * @param engine The Engine to be named
358 Engine engine)
362 name = new ObjectName(domain + ":type=Engine");
405 if (container instanceof Engine) {
423 if (parent instanceof Engine) {
[all...]
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/data/
H A DEngineRef.java61 import com.sun.enterprise.config.serverbeans.Engine;
65 * When a module is attached to a LoadedEngine, it creates an Engine reference. Each module
187 public void save(Engine engine) throws TransactionFailure, PropertyVetoException {
H A DApplicationInfo.java63 import com.sun.enterprise.config.serverbeans.Engine;
439 Engine engine = app.createChild(Engine.class);
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/
H A DApplicationConfigInfo.java45 import com.sun.enterprise.config.serverbeans.Engine;
85 for (Engine e : m.getEngines()) {
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/adapter/
H A DInstallerThread.java156 Engine webe = singleModule.createChild(Engine.class);
158 Engine sece = singleModule.createChild(Engine.class);
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DListContainersCommand.java51 import com.sun.enterprise.config.serverbeans.Engine;
123 Engine engine = module.getEngine(engineInfo.getSniffer().getModuleType());
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DStandardService.java79 * associated Container is generally an instance of Engine, but this is
152 * recently added Engine.)
186 if ((oldContainer != null) && (oldContainer instanceof Engine))
187 ((Engine) oldContainer).setService(null);
189 if ((this.container != null) && (this.container instanceof Engine))
190 ((Engine) this.container).setService(this);
/glassfish-3.1.2/installer/src/main/resources/wrappers/
H A Dwrapper.sh196 $my_jar xvf ./Product/Packages/Engine.zip
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/
H A DEmbeddedWebContainer.java269 public Engine[] getEngines() {
342 * Create, configure, and return an Engine that will process all
350 public Engine createEngine() {

Completed in 39 milliseconds

12