Package org.apache.commons.mail.resolver
Class DataSourceClassPathResolver
java.lang.Object
org.apache.commons.mail.resolver.DataSourceBaseResolver
org.apache.commons.mail.resolver.DataSourceClassPathResolver
- All Implemented Interfaces:
DataSourceResolver
Creates a
DataSource
based on an class path.- Since:
- 1.3
-
Constructor Summary
ConstructorsConstructorDescriptionConstructorDataSourceClassPathResolver
(String classPathBase) Constructor.DataSourceClassPathResolver
(String classPathBase, boolean lenient) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionjavax.activation.DataSource
Resolves the given resource location to aDataSource
.javax.activation.DataSource
Resolves the given resource location to aDataSource
.Methods inherited from class org.apache.commons.mail.resolver.DataSourceBaseResolver
isLenient
-
Constructor Details
-
DataSourceClassPathResolver
public DataSourceClassPathResolver()Constructor -
DataSourceClassPathResolver
Constructor.- Parameters:
classPathBase
- a base class path
-
DataSourceClassPathResolver
Constructor.- Parameters:
classPathBase
- a base class pathlenient
- shall we ignore resources not found or throw an exception?
-
-
Method Details
-
getClassPathBase
- Returns:
- the classPathBase
-
resolve
Resolves the given resource location to aDataSource
.- Parameters:
resourceLocation
- the location of the resource- Returns:
- the
DataSource
- Throws:
IOException
- the resource was not found
-
resolve
public javax.activation.DataSource resolve(String resourceLocation, boolean isLenient) throws IOException Resolves the given resource location to aDataSource
.- Parameters:
resourceLocation
- the location of the resourceisLenient
- shall we ignore resources not found or complain with an exception?- Returns:
- the data source containing the resource or null if the resource was not found in lenient mode
- Throws:
IOException
- resolving the resource failed
-