public interface Configurer
This interface serves as the the X Platform external configuration
service provider interface. Implementations of this interface are
invoked Main
immediately on startup to configure the
platform before the main class loads and starts the requested
Talon server.
Main
class locates an instance of Configurer
using java's standard ServiceLoader.load(Class)
mechanism.String[] configure(String[] args) throws Exception
args
- Contains the arguments supplied to Main
when the Talon server was started.
This method is invoked by Main
on startup. The
Main
class invoked this method supplying it the
command line arguments that it received. It expects the
method to perform any platform configuration it needs to
perform and to return back the modified set of arguments
to Main to use.
Exception
Copyright © 2019 Neeve Research, LLC. All Rights Reserved.