Package org.apache.lucene.gdata.server.GDataRequest

Examples of org.apache.lucene.gdata.server.GDataRequest.OutputFormat


    }

    private static abstract class FormatWriter{
       
        static FormatWriter getFormatWriter(final GDataResponse response, final ProvidedService service ){
            OutputFormat format = response.getOutputFormat();
            if(format == OutputFormat.HTML){
                return new HTMLFormatWriter(service);
            }
            return new SyndicateFormatWriter(service,format,response.getEncoding());
        }
View Full Code Here

TOP

Related Classes of org.apache.lucene.gdata.server.GDataRequest.OutputFormat

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.