|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ConfigurationException | |
---|---|
org.apache.torque.generator.configuration | This package contains the classes for configuring the Torque generator. |
org.apache.torque.generator.configuration.controller | This package contains the classes for reading the control configuration of the Torque generator units of generation. |
org.apache.torque.generator.configuration.mergepoint | This package contains the classes for reading the mergepoint mappings for the Torque generator units of generation. |
org.apache.torque.generator.configuration.option | This package contains the classes for reading the options for Torque generator units of generation. |
org.apache.torque.generator.configuration.outlet | This package contains the classes for reading the outlet mappings for torque-generator's units of generation. |
org.apache.torque.generator.configuration.source | This package provides SAXhandlers for reading the source configuration snippets in the control file. |
org.apache.torque.generator.outlet | This package defines torque generator outlets which produce output snippets from the source. |
org.apache.torque.generator.outlet.copy | This package defines and implements copy outlets. |
org.apache.torque.generator.outlet.java | This package defines java outlets and provides some implementations. |
org.apache.torque.generator.source | This package contains the handling of source files. |
org.apache.torque.generator.source.jdbc | This package implements sources which read from jdbc. |
org.apache.torque.generator.source.stream | This package contains the handling of stream-based sources, such as file sources. |
org.apache.torque.generator.template | This package contains the handling of template-based outlets in the Torque generator. |
org.apache.torque.generator.template.velocity | This package contains the handling of velocity outlets in the Torque generator. |
Uses of ConfigurationException in org.apache.torque.generator.configuration |
---|
Methods in org.apache.torque.generator.configuration that throw ConfigurationException | |
---|---|
InputStream |
ConfigurationProvider.getControlConfigurationInputStream()
Creates a reader to access the control configuration. |
InputStream |
AbstractConfigurationProvider.getControlConfigurationInputStream()
|
String |
ConfigurationProvider.getControlConfigurationLocation()
Returns the location of the control configuration as human readable String for debugging and error tracking purposes. |
String |
JarConfigurationProvider.getControlConfigurationLocation()
|
String |
DirectoryConfigurationProvider.getControlConfigurationLocation()
|
protected InputStream |
ClasspathConfigurationProvider.getInputStream(String name,
String directory,
String fileDescription)
|
protected InputStream |
JarConfigurationProvider.getInputStream(String name,
String directory,
String description)
|
protected abstract InputStream |
AbstractConfigurationProvider.getInputStream(String name,
String directory,
String fileDescription)
|
protected InputStream |
DirectoryConfigurationProvider.getInputStream(String name,
String directory,
String description)
|
static Object |
ClassHelper.getInstance(String className,
Class<?> isInstanceOf)
Creates an instance of ca class and checks whether it can be casted to another class |
InputStream |
ConfigurationProvider.getOptionsInputStream(String name)
Creates a reader to access an options file. |
InputStream |
AbstractConfigurationProvider.getOptionsInputStream(String name)
|
InputStream |
ConfigurationProvider.getOutletConfigurationInputStream(String name)
Creates a reader to access the configuration for one outlet. |
InputStream |
AbstractConfigurationProvider.getOutletConfigurationInputStream(String name)
|
Collection<String> |
ClasspathConfigurationProvider.getOutletConfigurationNames()
|
Collection<String> |
ConfigurationProvider.getOutletConfigurationNames()
Returns a list of all found outlet configuration files in the generation unit. |
Collection<String> |
JarConfigurationProvider.getOutletConfigurationNames()
|
Collection<String> |
DirectoryConfigurationProvider.getOutletConfigurationNames()
|
InputStream |
ConfigurationProvider.getResourceInputStream(String path)
Creates a reader to access a resource file. |
InputStream |
AbstractConfigurationProvider.getResourceInputStream(String name)
|
InputStream |
ConfigurationProvider.getTemplateInputStream(String name)
Creates a reader to access a template. |
InputStream |
AbstractConfigurationProvider.getTemplateInputStream(String name)
|
void |
Configuration.read()
Reads the configuration. |
void |
OutletTypes.registerTypedOutletHandlerFactory(TypedOutletSaxHandlerFactory factory)
Registers a handler for a new type of outlets. |
void |
OutletTypes.registerUntypedOutletHandlerFactory(UntypedOutletSaxHandlerFactory factory)
Registers a untyped handler. |
Constructors in org.apache.torque.generator.configuration that throw ConfigurationException | |
---|---|
JarConfigurationProvider(ProjectPaths projectPaths,
TorqueGeneratorPaths configurationPaths)
Constructor. |
Uses of ConfigurationException in org.apache.torque.generator.configuration.controller |
---|
Methods in org.apache.torque.generator.configuration.controller that throw ConfigurationException | |
---|---|
ControlConfiguration |
ControlConfigurationXmlParser.readControllerConfiguration(ConfigurationProvider configurationProvider,
ProjectPaths projectPaths,
ConfigurationHandlers configurationHandlers)
Reads the controller configuration out of a configurationProvider. |
Uses of ConfigurationException in org.apache.torque.generator.configuration.mergepoint |
---|
Methods in org.apache.torque.generator.configuration.mergepoint that throw ConfigurationException | |
---|---|
void |
ActionSaxHandlerFactories.register(ActionSaxHandlerFactory factory)
Registers a handler for a new action type. |
void |
OptionsSaxHandlerFactories.register(OptionsSaxHandlerFactory optionsSaxHandlerFactory)
Registers a new OptionsSaxHandlerFactory. |
Uses of ConfigurationException in org.apache.torque.generator.configuration.option |
---|
Methods in org.apache.torque.generator.configuration.option that throw ConfigurationException | |
---|---|
Collection<Option> |
XmlOptionConfiguration.getOptions(ConfigurationProvider configurationProvider)
Reads the options from the XML file given in the path and returns them. |
Collection<Option> |
PropertiesOptionConfiguration.getOptions(ConfigurationProvider configurationProvider)
Reads the options from the property file given in the path and returns them. |
Collection<Option> |
OptionsConfiguration.getOptions(ConfigurationProvider configurationProvider)
Retrieves the configured options and returns them. |
Collection<Option> |
MapOptionsConfiguration.getOptions(ConfigurationProvider configurationProvider)
Returns the contained options. |
Uses of ConfigurationException in org.apache.torque.generator.configuration.outlet |
---|
Methods in org.apache.torque.generator.configuration.outlet that throw ConfigurationException | |
---|---|
void |
OutletConfiguration.addOutlet(Outlet outlet,
UnitDescriptor unitDescriptor)
Adds a outlet. |
OutletConfiguration |
OutletConfigurationXmlParser.readOutletConfiguration(ConfigurationProvider configurationProvider,
ConfigurationHandlers configurationHandlers,
UnitDescriptor unitDescriptor)
Reads all outlet configuration files and creates the outlet configuration from them. |
void |
OutletConfiguration.resolveMergepointMappings()
Resolves the isolated mergepoint mappings and adds them to the relevant outlets. |
Constructors in org.apache.torque.generator.configuration.outlet that throw ConfigurationException | |
---|---|
OutletConfiguration(Collection<Outlet> outlets,
Collection<MergepointMapping> mergepointMappings,
UnitDescriptor unitDescriptor)
Creates a OutletConfiguration containing a list of Outlets. |
Uses of ConfigurationException in org.apache.torque.generator.configuration.source |
---|
Methods in org.apache.torque.generator.configuration.source that throw ConfigurationException | |
---|---|
byte[] |
EntityReferenceSaxHandler.readResource()
Reads the resource defined in the parsed XML . |
void |
SourceSaxHandlerFactories.register(SourceSaxHandlerFactory sourceSaxHandlerFactory)
Registers a new SourcseSaxHandlerFactory. |
Uses of ConfigurationException in org.apache.torque.generator.outlet |
---|
Methods in org.apache.torque.generator.outlet that throw ConfigurationException | |
---|---|
void |
DebuggingOutletWrapper.addMergepointMapping(MergepointMapping mergepointMapping)
Adds the mergepoint mapping to the delegate. |
void |
OutletImpl.addMergepointMapping(MergepointMapping mergepointMapping)
Adds an mergepoint mapping to the outlet. |
void |
Outlet.addMergepointMapping(MergepointMapping mergepointMapping)
Adds an mergepoint mapping to the outlet. |
Uses of ConfigurationException in org.apache.torque.generator.outlet.copy |
---|
Constructors in org.apache.torque.generator.outlet.copy that throw ConfigurationException | |
---|---|
CopyOutlet(QualifiedName name,
ConfigurationProvider configurationProvider,
String path)
Constructs a new CopyOutlet. |
Uses of ConfigurationException in org.apache.torque.generator.outlet.java |
---|
Methods in org.apache.torque.generator.outlet.java that throw ConfigurationException | |
---|---|
void |
OutletWithoutMergepoints.addMergepointMapping(MergepointMapping mergepointMapping)
|
Uses of ConfigurationException in org.apache.torque.generator.source |
---|
Methods in org.apache.torque.generator.source that throw ConfigurationException | |
---|---|
abstract SourceProvider |
SourceProvider.copy()
Returns a copy of this source provider in its initial state. |
void |
SourceProvider.init(ConfigurationHandlers configurationHandlers,
ControllerState controllerState)
Initializes the source provider. |
protected abstract void |
SourceProvider.initInternal(ConfigurationHandlers configurationHandlers,
ControllerState controllerState)
Initializes the sources provided by this SourceProvider. |
void |
SourceProvider.reset(ConfigurationHandlers configurationHandlers,
ControllerState controllerState)
Resets the source provider. |
protected abstract void |
SourceProvider.resetInternal(ConfigurationHandlers configurationHandlers,
ControllerState controllerState)
Resets the sources provided by this SourceProvider. |
void |
SourceProcessConfiguration.setSkipDecider(String skipDecider)
Sets and instantiates the source filter class. |
Uses of ConfigurationException in org.apache.torque.generator.source.jdbc |
---|
Methods in org.apache.torque.generator.source.jdbc that throw ConfigurationException | |
---|---|
SourceProvider |
JdbcMetadataSourceProvider.copy()
Returns a copy of this source provider in its initial state. |
void |
JdbcMetadataSourceProvider.initInternal(ConfigurationHandlers configurationHandlers,
ControllerState controllerState)
Generates an XML database schema from JDBC metadata. |
protected void |
JdbcMetadataSourceProvider.resetInternal(ConfigurationHandlers configurationHandlers,
ControllerState controllerState)
|
Constructors in org.apache.torque.generator.source.jdbc that throw ConfigurationException | |
---|---|
JdbcMetadataSourceProvider(String urlOption,
String driverOption,
String usernameOption,
String passwordOption,
String schemaOption)
|
Uses of ConfigurationException in org.apache.torque.generator.source.stream |
---|
Methods in org.apache.torque.generator.source.stream that throw ConfigurationException | |
---|---|
SourceProvider |
FileSourceProvider.copy()
Returns a copy of this source provider in its initial state. |
protected void |
FileSourceProvider.initInternal(ConfigurationHandlers configurationHandlers,
ControllerState controllerState)
Determines the files which match the source fileset. |
Constructors in org.apache.torque.generator.source.stream that throw ConfigurationException | |
---|---|
FileSourceProvider(StreamSourceFormat sourceFormat,
Fileset sourceFileset,
Boolean combineFiles)
Constructor. |
Uses of ConfigurationException in org.apache.torque.generator.template |
---|
Methods in org.apache.torque.generator.template that throw ConfigurationException | |
---|---|
String |
TemplateOutlet.getContent(ControllerState controllerState)
Returns the contents as a Template as a String. |
String |
TemplateOutletImpl.getContent(ControllerState controllerState)
|
Constructors in org.apache.torque.generator.template that throw ConfigurationException | |
---|---|
TemplateOutletImpl(QualifiedName name,
ConfigurationProvider configurationProvider,
String path,
String encoding,
TemplateFilter templateFilter)
Constructs a TemplateOutletImpl with the given name. |
Uses of ConfigurationException in org.apache.torque.generator.template.velocity |
---|
Constructors in org.apache.torque.generator.template.velocity that throw ConfigurationException | |
---|---|
VelocityOutlet(QualifiedName name,
ConfigurationProvider configurationProvider,
String path,
String encoding)
Constructs a new VelocityTemplateOutlet. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |