Class AbstractLocationPropertiesSource

java.lang.Object
org.apache.camel.support.service.BaseService
org.apache.camel.support.service.ServiceSupport
org.apache.camel.component.properties.AbstractLocationPropertiesSource
All Implemented Interfaces:
AutoCloseable, LocationPropertiesSource, org.apache.camel.Service, org.apache.camel.ShutdownableService, org.apache.camel.spi.LoadablePropertiesSource, org.apache.camel.spi.PropertiesSource, org.apache.camel.StatefulService, org.apache.camel.SuspendableService
Direct Known Subclasses:
ClasspathPropertiesSource, FilePropertiesSource

public abstract class AbstractLocationPropertiesSource extends org.apache.camel.support.service.ServiceSupport implements org.apache.camel.spi.LoadablePropertiesSource, LocationPropertiesSource
Base class for LoadablePropertiesSource which can load properties from a source such as classpath or file system.
  • Field Summary

    Fields inherited from class org.apache.camel.support.service.BaseService

    BUILT, FAILED, INITIALIZED, INITIALIZING, lock, NEW, SHUTDOWN, SHUTTING_DOWN, STARTED, STARTING, status, STOPPED, STOPPING, SUSPENDED, SUSPENDING
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected void
     
    protected void
     
    Gets the location of the properties
     
     
     
    abstract Properties
     
    protected static Properties
    Strategy to prepare loaded properties before being used by Camel.
    void
     
    void
    setProperty(String key, String value)
    Sets a property

    Methods inherited from class org.apache.camel.support.service.BaseService

    build, doBuild, doFail, doLifecycleChange, doResume, doStart, doStop, doSuspend, fail, getStatus, init, isBuild, isInit, isNew, isRunAllowed, isShutdown, isStarted, isStarting, isStartingOrStarted, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspend

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.apache.camel.spi.PropertiesSource

    getName

    Methods inherited from interface org.apache.camel.Service

    build, close, init, start, stop

    Methods inherited from interface org.apache.camel.ShutdownableService

    shutdown

    Methods inherited from interface org.apache.camel.StatefulService

    getStatus, isRunAllowed, isStarted, isStarting, isStopped, isStopping, isSuspending

    Methods inherited from interface org.apache.camel.SuspendableService

    isSuspended, resume, suspend
  • Constructor Details

  • Method Details

    • loadPropertiesFromLocation

      public abstract Properties loadPropertiesFromLocation(PropertiesComponent propertiesComponent, PropertiesLocation location)
    • getLocation

      public PropertiesLocation getLocation()
      Description copied from interface: LocationPropertiesSource
      Gets the location of the properties
      Specified by:
      getLocation in interface LocationPropertiesSource
    • loadProperties

      public Properties loadProperties()
      Specified by:
      loadProperties in interface org.apache.camel.spi.LoadablePropertiesSource
    • loadProperties

      public Properties loadProperties(Predicate<String> filter)
      Specified by:
      loadProperties in interface org.apache.camel.spi.LoadablePropertiesSource
    • reloadProperties

      public void reloadProperties(String location)
      Specified by:
      reloadProperties in interface org.apache.camel.spi.LoadablePropertiesSource
    • getProperty

      public String getProperty(String name)
      Specified by:
      getProperty in interface org.apache.camel.spi.PropertiesSource
    • setProperty

      public void setProperty(String key, String value)
      Sets a property
      Parameters:
      key - the key
      value - the value
    • doInit

      protected void doInit() throws Exception
      Overrides:
      doInit in class org.apache.camel.support.service.BaseService
      Throws:
      Exception
    • doShutdown

      protected void doShutdown() throws Exception
      Overrides:
      doShutdown in class org.apache.camel.support.service.BaseService
      Throws:
      Exception
    • prepareLoadedProperties

      protected static Properties prepareLoadedProperties(Properties properties)
      Strategy to prepare loaded properties before being used by Camel.

      This implementation will ensure values are trimmed, as loading properties from a file with values having trailing spaces is not automatically trimmed by the Properties API from the JDK.

      Parameters:
      properties - the properties
      Returns:
      the prepared properties