Examples of RunnerInfo


Examples of org.jdesktop.wonderland.runner.RunnerInfo

     * @return a runner info, including hostname and port
     */
    @Override
    public RunnerInfo getRunnerInfo() {
        // get the runner info
        RunnerInfo info = super.getRunnerInfo();

        // add our properties
        info.setProperty(HOSTNAME_PROP, getHostname());
        info.setProperty(HOSTNAME_INTERNAL_PROP, getInternalHostname());
        info.setProperty(PORT_PROP, String.valueOf(getPort()));
        info.setProperty(PORT_INTERNAL_PROP, String.valueOf(getInternalPort()));
        info.setProperty(WFSNAME_PROP, getWFSName());
        return info;

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.