Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions components/camel-bindy/src/main/docs/bindy-dataformat.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ one time.

| quotingEscaped | boolean | | false | Indicate if the values must be escaped when quoting (optional)

| quotingOnlyWhenNeeded | boolean | | false a| Indicate if the values should be quoted only when needed (optional) - if enabled then the value is only quoted
when it contains the configured separator, quote, or crlf characters. The quoting option must also be enabled.

| removeQuotes | boolean | | true | The remove quotes parameter flags if unmarshalling should try to remove quotes for each field

| skipField | boolean | | false a| The skipField parameter will allow to skip fields of a CSV file. If some fields are not necessary, they can be
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.infra.core.annotations.ContextFixture;
import org.apache.camel.test.infra.core.annotations.RouteFixture;
import org.apache.camel.util.ObjectHelper;
import org.junit.jupiter.api.extension.ExtensionContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public void afterAll(CamelContext context) {
if (context != null) {
context.shutdown();
} else {
LOG.error("Cannot run the JUnit's afterAll because the context is null: a problem may have prevented the context from starting");
LOG.error(
"Cannot run the JUnit's afterAll because the context is null: a problem may have prevented the context from starting");
}
}

Expand All @@ -62,7 +63,8 @@ public void beforeAll(CamelContext context) {
if (context != null) {
context.getShutdownStrategy().setTimeout(shutdownTimeout);
} else {
LOG.error("Cannot run the JUnit's beforeAll because the context is null: a problem may have prevented the context from starting");
LOG.error(
"Cannot run the JUnit's beforeAll because the context is null: a problem may have prevented the context from starting");
}
}

Expand Down