Package org.directwebremoting.convert

Examples of org.directwebremoting.convert.BeanConverter


        // Register object to manager
        this.creatorManager.addCreator(creator.getClassName(), creator);

        //this.converterManager.addConverter("java.util.concurrent.locks.ReentrantLock", new BeanConverter());
        //FIXME: Doesn't work. Maybe get Converters by inspection at export time.
        this.converterManager.addConverter("*", new BeanConverter());
        this.converterManager.addConverter("com.*", new BeanConverter());
        this.converterManager.addConverter("org.*", new BeanConverter());
        this.converterManager.addConverter("de.*", new BeanConverter());
        this.converterManager.addConverter("uk.*", new BeanConverter());
        this.converterManager.addConverter("java.*", new BeanConverter());
        this.converterManager.addConverter("javax.*", new BeanConverter());
        this.converterManager.addConverter("net.*", new BeanConverter());

        // Return browser-compatible URL
        URI uri = createURI(this.location + "/test/" + PluginExport.getExportName(plugin));
        this.logger.info("Plugin exported as JavaScript to " + uri);

View Full Code Here

TOP

Related Classes of org.directwebremoting.convert.BeanConverter

Copyright © 2018 www.massapicom. 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.