Package it.celi.organic.lingua.moses.ws.xml

Examples of it.celi.organic.lingua.moses.ws.xml.SupportedLanguages


  @Path("/SupportedLanguages")
  @GET
  @Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON, MediaType.TEXT_HTML })
  public Response supportedLangsDoGet( @DefaultValue("false") @QueryParam("JSONoutput") boolean jsonOutput){
    List<String> langs = MosesProxyServiceREST.mp.getSupportedLanguagePairs();
    SupportedLanguages result=new SupportedLanguages();
    result.setSupportedLangs(langs);
   
    if(!jsonOutput )
      return Response.ok(result,MediaType.APPLICATION_XML).build();
    else
      return Response.ok(result,MediaType.APPLICATION_JSON).build();
View Full Code Here

TOP

Related Classes of it.celi.organic.lingua.moses.ws.xml.SupportedLanguages

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.