Class CsvService

java.lang.Object
io.atlasmap.csv.service.CsvService

@Path("/csv/") public class CsvService extends Object
  • Constructor Details

    • CsvService

      public CsvService()
  • Method Details

    • toJson

      protected byte[] toJson(Object value)
    • simpleHelloWorld

      @GET @Path("/simple") @Produces("text/plain") public String simpleHelloWorld(@QueryParam("from") String from)
    • inspect

      @POST @Consumes("application/json") @Produces("application/json") @Path("/inspect") public javax.ws.rs.core.Response inspect(InputStream request, @QueryParam("format") String format, @QueryParam("delimiter") String delimiter, @QueryParam("firstRecordAsHeader") Boolean firstRecordAsHeader, @QueryParam("skipRecordHeader") Boolean skipHeaderRecord, @QueryParam("headers") String headers, @QueryParam("commentMarker") String commentMarker, @QueryParam("escape") String escape, @QueryParam("ignoreEmptyLines") Boolean ignoreEmptyLines, @QueryParam("ignoreHeaderCase") Boolean ignoreHeaderCase, @QueryParam("ignoreSurroundingSpaces") Boolean ignoreSurroundingSpaces, @QueryParam("nullString") String nullString, @QueryParam("quote") String quote, @QueryParam("allowDuplicateHeaderNames") Boolean allowDuplicateHeaderNames, @QueryParam("allowMissingColumnNames") Boolean allowMissingColumnNames) throws IOException
      Throws:
      IOException