org.apache.axis
Interface EngineConfigurationFactory
- DefaultEngineConfigurationFactory, EngineConfigurationFactoryDefault, EngineConfigurationFactoryServlet, ServletEngineConfigurationFactory
public interface EngineConfigurationFactory
EngineConfigurationFactory is an interface used to construct
concrete EngineConfiguration instances.
Each EngineConfigurationFactory must also (directly) implement
the following static method:
//Creates and returns a new EngineConfigurationFactory.
//If a factory cannot be created, return 'null'.
//
//The factory may return non-NULL only if:
// - it knows what to do with the param (check type & process value)
// - it can find it's configuration information
//
//@see org.apache.axis.configuration.EngineConfigurationFactoryFinder
public static EngineConfigurationFactory newFactory(Object param);
This is checked at runtime and a warning generated for
factories found that do NOT implement this.
- Richard A. Sitze
- Glyn Normington (glyn@apache.org)
static String | SYSTEM_PROPERTY_NAME - Property name used for setting an EngineConfiguration to be used
in creating engines.
|
SYSTEM_PROPERTY_NAME
public static final String SYSTEM_PROPERTY_NAME
Property name used for setting an EngineConfiguration to be used
in creating engines.
getClientEngineConfig
public EngineConfiguration getClientEngineConfig()
Get a default client engine configuration.
- a client EngineConfiguration
getServerEngineConfig
public EngineConfiguration getServerEngineConfig()
Get a default server engine configuration.
- a server EngineConfiguration
Copyright © 2005 Apache Web Services Project. All Rights Reserved.