Class DataSourceClassPathResolver

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getClassPathBase()  
      javax.activation.DataSource resolve​(java.lang.String resourceLocation)
      Resolves the given resource location to a DataSource.
      javax.activation.DataSource resolve​(java.lang.String resourceLocation, boolean isLenient)
      Resolves the given resource location to a DataSource.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DataSourceClassPathResolver

        public DataSourceClassPathResolver()
        Constructor
      • DataSourceClassPathResolver

        public DataSourceClassPathResolver​(java.lang.String classPathBase)
        Constructor.
        Parameters:
        classPathBase - a base class path
      • DataSourceClassPathResolver

        public DataSourceClassPathResolver​(java.lang.String classPathBase,
                                           boolean lenient)
        Constructor.
        Parameters:
        classPathBase - a base class path
        lenient - shall we ignore resources not found or throw an exception?
    • Method Detail

      • getClassPathBase

        public java.lang.String getClassPathBase()
        Returns:
        the classPathBase
      • resolve

        public javax.activation.DataSource resolve​(java.lang.String resourceLocation)
                                            throws java.io.IOException
        Resolves the given resource location to a DataSource.
        Parameters:
        resourceLocation - the location of the resource
        Returns:
        the DataSource
        Throws:
        java.io.IOException - the resource was not found
      • resolve

        public javax.activation.DataSource resolve​(java.lang.String resourceLocation,
                                                   boolean isLenient)
                                            throws java.io.IOException
        Resolves the given resource location to a DataSource.
        Parameters:
        resourceLocation - the location of the resource
        isLenient - 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:
        java.io.IOException - resolving the resource failed