Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
acb827d
(chores): fix SonarCloud S5993 in camel-api
orpiske Mar 28, 2026
8bc7a6f
(chores): fix SonarCloud S5993 in camel-base
orpiske Mar 28, 2026
cc57af9
(chores): fix SonarCloud S5993 in camel-core-languages
orpiske Mar 28, 2026
a4da6cb
(chores): fix SonarCloud S5993 in camel-core-model
orpiske Mar 28, 2026
7dd0950
(chores): fix SonarCloud S5993 in camel-core-processor
orpiske Mar 28, 2026
86e79eb
(chores): fix SonarCloud S5993 in camel-core-reifier
orpiske Mar 28, 2026
c84afa9
(chores): fix SonarCloud S5993 in camel-core-xml
orpiske Mar 28, 2026
1e26afc
(chores): fix SonarCloud S5993 in camel-main
orpiske Mar 28, 2026
7b2b5dd
(chores): fix SonarCloud S5993 in camel-support
orpiske Mar 28, 2026
798a118
(chores): fix SonarCloud S5993 in camel-djl
orpiske Mar 28, 2026
b514d22
(chores): fix SonarCloud S5993 in camel-as2-api
orpiske Mar 28, 2026
344af6c
(chores): fix SonarCloud S5993 in camel-aws2-timestream
orpiske Mar 28, 2026
5208716
(chores): fix SonarCloud S5993 in camel-infinispan-common
orpiske Mar 28, 2026
7036b4a
(chores): fix SonarCloud S5993 in camel-oauth
orpiske Mar 28, 2026
73550a0
(chores): fix SonarCloud S5993 in camel-salesforce-component
orpiske Mar 28, 2026
7204e8c
(chores): fix SonarCloud S5993 in camel-servicenow-component
orpiske Mar 28, 2026
93179b5
(chores): fix SonarCloud S5993 in camel-sjms
orpiske Mar 28, 2026
4aef212
(chores): fix SonarCloud S5993 in camel-smpp
orpiske Mar 28, 2026
fa4671b
(chores): fix SonarCloud S5993 in camel-splunk
orpiske Mar 28, 2026
ee597eb
(chores): fix SonarCloud S5993 in camel-sql
orpiske Mar 28, 2026
ac29334
(chores): fix SonarCloud S5993 in camel-telegram
orpiske Mar 28, 2026
c853d86
(chores): fix SonarCloud S5993 in camel-twitter
orpiske Mar 28, 2026
dc98540
(chores): fix SonarCloud S5993 in camel-whatsapp
orpiske Mar 28, 2026
5eb886d
(chores): fix SonarCloud S5993 in camel-wordpress
orpiske Mar 28, 2026
183c422
(chores): fix SonarCloud S5993 in camel-workday
orpiske Mar 28, 2026
fe0f789
(chores): fix SonarCloud S5993 in camel-xmlsecurity
orpiske Mar 28, 2026
499c131
(chores): fix SonarCloud S5993 in camel-zeebe
orpiske Mar 28, 2026
93eeff6
(chores): fix SonarCloud S5993 in camel-zookeeper
orpiske Mar 28, 2026
3d25a18
(chores): fix SonarCloud S5993 in camel-endpointdsl
orpiske Mar 28, 2026
2089db9
(chores): fix SonarCloud S5993 in camel-jbang-core
orpiske Mar 28, 2026
96c6c96
(chores): fix SonarCloud S5993 in camel-jbang-plugin-kubernetes
orpiske Mar 28, 2026
4fa308c
(chores): fix SonarCloud S5993 in camel-yaml-dsl
orpiske Mar 28, 2026
9972338
(chores): fix SonarCloud S5993 in camel-yaml-dsl-common
orpiske Mar 28, 2026
e6541cd
(chores): fix SonarCloud S5993 in camel-test-infra-artemis
orpiske Mar 28, 2026
c6309cf
(chores): fix SonarCloud S5993 in camel-test-infra-aws-v2
orpiske Mar 28, 2026
acc290a
(chores): fix SonarCloud S5993 in camel-test-infra-azure-common
orpiske Mar 28, 2026
63c08ce
(chores): fix SonarCloud S5993 in camel-test-infra-jetty
orpiske Mar 28, 2026
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 @@ -23,7 +23,7 @@ public abstract class AbstractPredictor {

private final DJLEndpoint endpoint;

public AbstractPredictor(DJLEndpoint endpoint) {
protected AbstractPredictor(DJLEndpoint endpoint) {
this.endpoint = endpoint;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public abstract class AbstractCvZooPredictor<T> extends AbstractPredictor {

protected ZooModel<Image, T> model;

public AbstractCvZooPredictor(DJLEndpoint endpoint) {
protected AbstractCvZooPredictor(DJLEndpoint endpoint) {
super(endpoint);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public abstract class AbstractNlpZooPredictor<T> extends AbstractPredictor {

protected ZooModel<String, T> model;

public AbstractNlpZooPredictor(DJLEndpoint endpoint) {
protected AbstractNlpZooPredictor(DJLEndpoint endpoint) {
super(endpoint);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@

abstract public class AS2ErrorDispositionException extends HttpException {

public AS2ErrorDispositionException(String message) {
protected AS2ErrorDispositionException(String message) {
super(message);
}

public AS2ErrorDispositionException(String message, Exception exception) {
protected AS2ErrorDispositionException(String message, Exception exception) {
super(message, exception);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public abstract class Timestream2AbstractEndpoint extends DefaultEndpoint {
@UriParam
private Timestream2Configuration configuration;

public Timestream2AbstractEndpoint(String uri, Component component, Timestream2Configuration configuration) {
protected Timestream2AbstractEndpoint(String uri, Component component, Timestream2Configuration configuration) {
super(uri, component);
this.configuration = configuration;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public abstract class InfinispanAggregationRepository
description = "Whether headers on the Exchange that are Java objects and Serializable should be included and saved to the repository")
private boolean allowSerializedHeaders;

public InfinispanAggregationRepository() {
protected InfinispanAggregationRepository() {
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public abstract class OAuth {
protected OAuthConfig config;
protected OAuthSessionStore sessionStore;

public OAuth() {
protected OAuth() {
this.sessionStore = new InMemorySessionStore();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public abstract class OAuthFactory {

protected final CamelContext context;

public OAuthFactory(CamelContext context) {
protected OAuthFactory(CamelContext context) {
this.context = context;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public abstract class AbstractSObjectBase extends AbstractDTOBase {

private Set<String> fieldsToNull = new HashSet<>();

public AbstractSObjectBase() {
protected AbstractSObjectBase() {
attributes = new Attributes();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ public abstract class AbstractClientBase extends ServiceSupport
private final long terminationTimeout;
private final ObjectMapper objectMapper;

public AbstractClientBase(String version, SalesforceSession session, SalesforceHttpClient httpClient,
SalesforceLoginConfig loginConfig) {
protected AbstractClientBase(String version, SalesforceSession session, SalesforceHttpClient httpClient,
SalesforceLoginConfig loginConfig) {
this(version, session, httpClient, loginConfig, DEFAULT_TERMINATION_TIMEOUT);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public abstract class AbstractRestProcessor extends AbstractSalesforceProcessor
notFoundBehaviour = configuration.getNotFoundBehaviour();
}

public AbstractRestProcessor(SalesforceEndpoint endpoint) {
protected AbstractRestProcessor(SalesforceEndpoint endpoint) {
super(endpoint);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public abstract class AbstractSalesforceProcessor extends ServiceSupport impleme

protected boolean rawPayload;

public AbstractSalesforceProcessor(final SalesforceEndpoint endpoint) {
protected AbstractSalesforceProcessor(final SalesforceEndpoint endpoint) {
this.endpoint = endpoint;
this.operationName = endpoint.getOperationName();
this.endpointConfigMap = endpoint.getConfiguration().toValueMap();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public abstract class AbstractServiceNowProducer extends HeaderSelectorProducer
private final ServiceNowRelease release;
private final ServiceNowEndpoint endpoint;

public AbstractServiceNowProducer(ServiceNowEndpoint endpoint, ServiceNowRelease release) {
protected AbstractServiceNowProducer(ServiceNowEndpoint endpoint, ServiceNowRelease release) {
super(endpoint, ServiceNowConstants.RESOURCE, endpoint.getConfiguration().getResource());

this.release = release;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public abstract class ReplyManagerSupport extends ServiceSupport implements Repl
protected final long replyToTimeout = 10000;
protected CorrelationTimeoutMap correlation;

public ReplyManagerSupport(CamelContext camelContext) {
protected ReplyManagerSupport(CamelContext camelContext) {
this.camelContext = camelContext;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public abstract class AbstractSmppCommand implements SmppCommand {
protected SMPPSession session;
protected SmppConfiguration config;

public AbstractSmppCommand(SMPPSession session, SmppConfiguration config) {
protected AbstractSmppCommand(SMPPSession session, SmppConfiguration config) {
this.session = session;
this.config = config;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public abstract class SmppSmCommand extends AbstractSmppCommand {

private final Logger logger = LoggerFactory.getLogger(SmppSmCommand.class);

public SmppSmCommand(SMPPSession session, SmppConfiguration config) {
protected SmppSmCommand(SMPPSession session, SmppConfiguration config) {
super(session, config);
defaultCharset = Charset.forName(config.getEncoding());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public abstract class SplunkDataWriter implements DataWriter {
private Socket socket;
protected final Lock lock = new ReentrantLock();

public SplunkDataWriter(SplunkEndpoint endpoint, Args args) {
protected SplunkDataWriter(SplunkEndpoint endpoint, Args args) {
this.endpoint = endpoint;
this.args = args;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ public abstract class DefaultSqlEndpoint extends DefaultPollingEndpoint implemen
description = "Factory for creating RowMapper")
private RowMapperFactory rowMapperFactory;

public DefaultSqlEndpoint() {
protected DefaultSqlEndpoint() {
}

public DefaultSqlEndpoint(String endpointUri, Component component) {
protected DefaultSqlEndpoint(String endpointUri, Component component) {
super(endpointUri, component);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,23 +63,23 @@ public abstract class AbstractJdbcMessageIdRepository extends ServiceSupport imp
protected TransactionTemplate transactionTemplate;
protected DataSource dataSource; // not in use

public AbstractJdbcMessageIdRepository() {
protected AbstractJdbcMessageIdRepository() {
}

public AbstractJdbcMessageIdRepository(JdbcTemplate jdbcTemplate, TransactionTemplate transactionTemplate) {
protected AbstractJdbcMessageIdRepository(JdbcTemplate jdbcTemplate, TransactionTemplate transactionTemplate) {
this.jdbcTemplate = jdbcTemplate;
this.transactionTemplate = transactionTemplate;
}

public AbstractJdbcMessageIdRepository(DataSource dataSource, TransactionTemplate transactionTemplate,
String processorName) {
protected AbstractJdbcMessageIdRepository(DataSource dataSource, TransactionTemplate transactionTemplate,
String processorName) {
this.jdbcTemplate = new JdbcTemplate(dataSource);
this.jdbcTemplate.afterPropertiesSet();
this.processorName = processorName;
this.transactionTemplate = transactionTemplate;
}

public AbstractJdbcMessageIdRepository(DataSource dataSource, String processorName) {
protected AbstractJdbcMessageIdRepository(DataSource dataSource, String processorName) {
this(dataSource, createTransactionTemplate(dataSource), processorName);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ public abstract class InlineQueryResult {
@JsonProperty("reply_markup")
private InlineKeyboardMarkup replyMarkup;

public InlineQueryResult() {
protected InlineQueryResult() {
}

public InlineQueryResult(String type) {
protected InlineQueryResult(String type) {
this.type = type;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public abstract class OutgoingMessage implements TelegramMessage {
@JsonProperty("reply_to_message_id")
protected Long replyToMessageId;

public OutgoingMessage() {
protected OutgoingMessage() {
}

public String getChatId() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ public abstract class PaidMedia implements Serializable {
*/
private String type;

public PaidMedia() {
protected PaidMedia() {
}

public PaidMedia(String type) {
protected PaidMedia(String type) {
this.type = type;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ public abstract class RevenueWithdrawalState implements Serializable {
*/
private String type;

public RevenueWithdrawalState() {
protected RevenueWithdrawalState() {
}

public RevenueWithdrawalState(String type) {
protected RevenueWithdrawalState(String type) {
this.type = type;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ public abstract class TransactionPartner implements Serializable {
*/
private String type;

public TransactionPartner() {
protected TransactionPartner() {
}

public TransactionPartner(String type) {
protected TransactionPartner(String type) {
this.type = type;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

abstract class OutgoingMessageHandler<T extends OutgoingMessage> extends TelegramMessageHandler<T> {

public OutgoingMessageHandler(TelegramApiClient apiClient, String uri, String contentType,
Class<? extends MessageResult> resultClass) {
protected OutgoingMessageHandler(TelegramApiClient apiClient, String uri, String contentType,
Class<? extends MessageResult> resultClass) {
super(apiClient, uri, contentType, resultClass);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ abstract class TelegramMessageHandler<T extends TelegramMessage> {
private final String uri;
private final Class<? extends MessageResult> resultClass;

public TelegramMessageHandler(TelegramApiClient apiClient, String uri,
String contentType, Class<? extends MessageResult> resultClass) {
protected TelegramMessageHandler(TelegramApiClient apiClient, String uri,
String contentType, Class<? extends MessageResult> resultClass) {
this.apiClient = apiClient;
this.mapper = apiClient.mapper();
this.uri = uri;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public abstract class AbstractTwitterEndpoint extends DefaultPollingEndpoint imp
@UriParam
private TwitterConfiguration properties;

public AbstractTwitterEndpoint(String uri, AbstractTwitterComponent component, TwitterConfiguration properties) {
protected AbstractTwitterEndpoint(String uri, AbstractTwitterComponent component, TwitterConfiguration properties) {
super(uri, component);
setDelay(DEFAULT_CONSUMER_DELAY);
this.properties = properties;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ abstract static class OutgoingMessageHandler<T extends BaseMessage> {
private final String uri;
private final Class<? extends MessageResponse> resultClass;

public OutgoingMessageHandler(HttpClient httpClient, ObjectMapper mapper, String uri, String contentType,
Class<? extends MessageResponse> resultClass) {
protected OutgoingMessageHandler(HttpClient httpClient, ObjectMapper mapper, String uri, String contentType,
Class<? extends MessageResponse> resultClass) {
this.resultClass = resultClass;
this.httpClient = httpClient;
this.mapper = mapper;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public abstract class Classifier {
private String taxonomy;
private List<String> meta;

public Classifier() {
protected Classifier() {
this.meta = new ArrayList<>();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public abstract class ClassifierSearchCriteria extends SearchCriteria {
private String slug;
private Context context;

public ClassifierSearchCriteria() {
protected ClassifierSearchCriteria() {

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public abstract class Publishable implements Serializable {

private String slug;

public Publishable() {
protected Publishable() {

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public abstract class TextPublishable extends Publishable {
@JsonProperty("featured_media")
private Integer featuredMedia;

public TextPublishable() {
protected TextPublishable() {

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ public abstract class AbstractWordpressConsumer extends ScheduledPollConsumer {

private WordpressConfiguration configuration;

public AbstractWordpressConsumer(WordpressEndpoint endpoint, Processor processor) {
protected AbstractWordpressConsumer(WordpressEndpoint endpoint, Processor processor) {
super(endpoint, processor);
this.configuration = endpoint.getConfiguration();
this.initConsumer();
}

public AbstractWordpressConsumer(WordpressEndpoint endpoint, Processor processor,
ScheduledExecutorService scheduledExecutorService) {
protected AbstractWordpressConsumer(WordpressEndpoint endpoint, Processor processor,
ScheduledExecutorService scheduledExecutorService) {
super(endpoint, processor, scheduledExecutorService);
this.configuration = endpoint.getConfiguration();
this.initConsumer();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public abstract class AbstractWordpressProducer<T> extends DefaultProducer {

private WordpressConfiguration configuration;

public AbstractWordpressProducer(WordpressEndpoint endpoint) {
protected AbstractWordpressProducer(WordpressEndpoint endpoint) {
super(endpoint);
this.configuration = endpoint.getConfiguration();
if (!WordpressServiceProvider.getInstance().hasAuthentication()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public abstract class WorkdayDefaultProducer extends DefaultProducer {

private final AuthenticationClient authenticationClient;

public WorkdayDefaultProducer(WorkdayEndpoint endpoint) {
protected WorkdayDefaultProducer(WorkdayEndpoint endpoint) {
super(endpoint);
this.endpoint = endpoint;
this.authenticationClient = new AuthClientForIntegration(this.endpoint.getWorkdayConfiguration());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public abstract class XmlSignatureConfiguration implements Cloneable {
@UriParam(label = "advanced")
private URIDereferencer uriDereferencer;

public XmlSignatureConfiguration() {
protected XmlSignatureConfiguration() {
}

public URIDereferencer getUriDereferencer() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public abstract class XmlSignatureProcessor implements Processor {

protected final CamelContext context;

public XmlSignatureProcessor(CamelContext context) {
protected XmlSignatureProcessor(CamelContext context) {
this.context = context;
}

Expand Down
Loading
Loading