Actually, from the AppSettings
javadocs:
/**
* @param use If true, the application will initialize and use input.
* Set to false for headless applications that do not require keyboard
* or mouse input.
* (Default: true)
*/
public void setUseInput(boolean use) {
putBoolean("UseInput", use);
}
So this makes it sound like I'd want to do something like this on the server:
AppSettings appSettings = new AppSettings(true);
appSettings.setUseInput(false);
Yes?