com.neeve.server
Interface Configurer


public interface Configurer

Represents the configuration service provider interface.

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.

The Main class locates an instance of Configurer using java's standard ServiceLoader.load(Class) mechanism.


Method Summary
 String[] configure(String[] args)
          Invoked to configure the platform.
 

Method Detail

configure

String[] configure(String[] args)
                   throws Exception
Invoked to configure the platform.

Parameters:
args - Contains the arguments supplied to Main when the Talon server was started.
Returns:
Returns the (modified) set of arguments.

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.

Throws:
Exception


Copyright © 2016 Neeve Research, LLC. All Rights Reserved.