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
Original file line number Diff line number Diff line change
@@ -1,34 +1,32 @@
/* Generated by camel build tools - do NOT edit this file! */
package org.eclipse.dirigible.components.engine.camel.components;

import org.apache.camel.spi.EndpointUriFactory;

import javax.annotation.processing.Generated;
import java.net.URISyntaxException;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

import org.apache.camel.spi.EndpointUriFactory;
import java.util.*;

/**
* Generated by camel build tools - do NOT edit this file!
*/
@Generated("org.apache.camel.maven.packaging.GenerateEndpointUriFactoryMojo")
public class DirigibleJavaScriptEndpointUriFactory extends org.apache.camel.support.component.EndpointUriFactorySupport implements EndpointUriFactory {
public class DirigibleJavaScriptEndpointUriFactory extends org.apache.camel.support.component.EndpointUriFactorySupport
implements EndpointUriFactory {

private static final String BASE = ":javaScriptPath";

private static final Set<String> PROPERTY_NAMES;
private static final Set<String> SECRET_PROPERTY_NAMES;
private static final Set<String> MULTI_VALUE_PREFIXES;
private static final Map<String, String> MULTI_VALUE_PREFIXES;

static {
Set<String> props = new HashSet<>(2);
props.add("javaScriptPath");
props.add("lazyStartProducer");
PROPERTY_NAMES = Collections.unmodifiableSet(props);
SECRET_PROPERTY_NAMES = Collections.emptySet();
MULTI_VALUE_PREFIXES = Collections.emptySet();
MULTI_VALUE_PREFIXES = Collections.emptyMap();
}

@Override
Expand Down Expand Up @@ -59,7 +57,7 @@ public Set<String> secretPropertyNames() {
}

@Override
public Set<String> multiValuePrefixes() {
public Map<String, String> multiValuePrefixes() {
return MULTI_VALUE_PREFIXES;
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
<activemq.version>6.1.0</activemq.version>

<!-- Camel -->
<camel.version>4.14.0</camel.version>
<camel.version>4.15.0</camel.version>

<!-- Velocity -->
<velocity.version>2.4</velocity.version>
Expand Down
Loading