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
Expand Up @@ -6831,7 +6831,7 @@ public static class AMQPHeaderNameBuilder {
* @return the name of the header {@code JmsDestination}.
*/
public String jmsDestination() {
return "JmsDestination";
return "CamelJmsDestination";
}

/**
Expand All @@ -6844,7 +6844,7 @@ public String jmsDestination() {
* @return the name of the header {@code JmsDestinationName}.
*/
public String jmsDestinationName() {
return "JmsDestinationName";
return "CamelJmsDestinationName";
}

/**
Expand Down Expand Up @@ -7028,7 +7028,7 @@ public String jMSXUserID() {
* @return the name of the header {@code JmsMessageType}.
*/
public String jmsMessageType() {
return "JmsMessageType";
return "CamelJmsMessageType";
}

/**
Expand All @@ -7043,7 +7043,7 @@ public String jmsMessageType() {
* @return the name of the header {@code JmsRequestTimeout}.
*/
public String jmsRequestTimeout() {
return "JmsRequestTimeout";
return "CamelJmsRequestTimeout";
}
}
static AMQPEndpointBuilder endpointBuilder(String componentName, String path) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ public static class AWS2EC2HeaderNameBuilder {
* @return the name of the header {@code AwsEC2ImageId}.
*/
public String awsEC2ImageId() {
return "AwsEC2ImageId";
return "CamelAwsEC2ImageId";
}

/**
Expand All @@ -538,7 +538,7 @@ public String awsEC2ImageId() {
* @return the name of the header {@code AwsEC2InstanceType}.
*/
public String awsEC2InstanceType() {
return "AwsEC2InstanceType";
return "CamelAwsEC2InstanceType";
}

/**
Expand All @@ -551,7 +551,7 @@ public String awsEC2InstanceType() {
* @return the name of the header {@code AwsEC2Operation}.
*/
public String awsEC2Operation() {
return "AwsEC2Operation";
return "CamelAwsEC2Operation";
}

/**
Expand All @@ -564,7 +564,7 @@ public String awsEC2Operation() {
* @return the name of the header {@code AwsEC2InstanceMinCount}.
*/
public String awsEC2InstanceMinCount() {
return "AwsEC2InstanceMinCount";
return "CamelAwsEC2InstanceMinCount";
}

/**
Expand All @@ -577,7 +577,7 @@ public String awsEC2InstanceMinCount() {
* @return the name of the header {@code AwsEC2InstanceMaxCount}.
*/
public String awsEC2InstanceMaxCount() {
return "AwsEC2InstanceMaxCount";
return "CamelAwsEC2InstanceMaxCount";
}

/**
Expand All @@ -590,7 +590,7 @@ public String awsEC2InstanceMaxCount() {
* @return the name of the header {@code AwsEC2InstanceMonitoring}.
*/
public String awsEC2InstanceMonitoring() {
return "AwsEC2InstanceMonitoring";
return "CamelAwsEC2InstanceMonitoring";
}

/**
Expand All @@ -603,7 +603,7 @@ public String awsEC2InstanceMonitoring() {
* @return the name of the header {@code AwsEC2InstanceKernelId}.
*/
public String awsEC2InstanceKernelId() {
return "AwsEC2InstanceKernelId";
return "CamelAwsEC2InstanceKernelId";
}

/**
Expand All @@ -616,7 +616,7 @@ public String awsEC2InstanceKernelId() {
* @return the name of the header {@code AwsEC2InstanceEbsOptimized}.
*/
public String awsEC2InstanceEbsOptimized() {
return "AwsEC2InstanceEbsOptimized";
return "CamelAwsEC2InstanceEbsOptimized";
}

/**
Expand All @@ -629,7 +629,7 @@ public String awsEC2InstanceEbsOptimized() {
* @return the name of the header {@code AwsEC2InstanceSecurityGroups}.
*/
public String awsEC2InstanceSecurityGroups() {
return "AwsEC2InstanceSecurityGroups";
return "CamelAwsEC2InstanceSecurityGroups";
}

/**
Expand All @@ -643,7 +643,7 @@ public String awsEC2InstanceSecurityGroups() {
* @return the name of the header {@code AwsEC2InstancesIds}.
*/
public String awsEC2InstancesIds() {
return "AwsEC2InstancesIds";
return "CamelAwsEC2InstancesIds";
}

/**
Expand All @@ -656,7 +656,7 @@ public String awsEC2InstancesIds() {
* @return the name of the header {@code AwsEC2InstancesKeyPair}.
*/
public String awsEC2InstancesKeyPair() {
return "AwsEC2InstancesKeyPair";
return "CamelAwsEC2InstancesKeyPair";
}

/**
Expand All @@ -670,7 +670,7 @@ public String awsEC2InstancesKeyPair() {
* @return the name of the header {@code AwsEC2InstancesClientToken}.
*/
public String awsEC2InstancesClientToken() {
return "AwsEC2InstancesClientToken";
return "CamelAwsEC2InstancesClientToken";
}

/**
Expand All @@ -684,7 +684,7 @@ public String awsEC2InstancesClientToken() {
* @return the name of the header {@code AwsEC2InstancesPlacement}.
*/
public String awsEC2InstancesPlacement() {
return "AwsEC2InstancesPlacement";
return "CamelAwsEC2InstancesPlacement";
}

/**
Expand All @@ -697,7 +697,7 @@ public String awsEC2InstancesPlacement() {
* @return the name of the header {@code AwsEC2InstancesTags}.
*/
public String awsEC2InstancesTags() {
return "AwsEC2InstancesTags";
return "CamelAwsEC2InstancesTags";
}

/**
Expand All @@ -710,7 +710,7 @@ public String awsEC2InstancesTags() {
* @return the name of the header {@code AwsEC2SubnetId}.
*/
public String awsEC2SubnetId() {
return "AwsEC2SubnetId";
return "CamelAwsEC2SubnetId";
}
}
static AWS2EC2EndpointBuilder endpointBuilder(
Expand Down
Loading