Class IntegrationContext

java.lang.Object
com.onenetwork.platform.integ.IntegrationContext

public class IntegrationContext
extends java.lang.Object
Context for parameterizing the behavior of various integration services.
  • Constructor Summary

    Constructors 
    Constructor Description
    IntegrationContext()  
  • Method Summary

    Modifier and Type Method Description
    boolean isSkipHeaderRow()
    Whether to skip the column header row; when true, column headers will not be generated when converting models to csv.
    void setSkipHeaderRow​(boolean skipHeaderRow)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

  • Method Details

    • isSkipHeaderRow

      public boolean isSkipHeaderRow()
      Whether to skip the column header row; when true, column headers will not be generated when converting models to csv. This implies that name-based mapping will not be used during processing. When set to false, headers are passed as-is to the interface, making it the interface's choice as to whether name-based mappings are supported. The default value of this field is true.
    • setSkipHeaderRow

      public void setSkipHeaderRow​(boolean skipHeaderRow)
      Parameters:
      skipHeaderRow - whether to skip the header row
      See Also:
      isSkipHeaderRow()