This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 75fa4ab130ffab71742a7d5c28f0bd3a2fba34a6 Author: Dmitry Kryukov <d...@ya.ru> AuthorDate: Thu Apr 27 12:47:25 2023 +0300 Fixed checkstyle and source check issue --- .../camel/component/as2/MendelsonCertLoader.java | 16 ++++++++++++++++ .../camel/component/as2/MendelsonSslEndpointIT.java | 19 ++++++++++++++++++- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/MendelsonCertLoader.java b/components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/MendelsonCertLoader.java index 8a6d106daba..0da4d0d2bb5 100644 --- a/components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/MendelsonCertLoader.java +++ b/components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/MendelsonCertLoader.java @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.apache.camel.component.as2; import java.io.IOException; diff --git a/components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/MendelsonSslEndpointIT.java b/components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/MendelsonSslEndpointIT.java index 069005fd8ac..edb689c0e39 100644 --- a/components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/MendelsonSslEndpointIT.java +++ b/components/camel-as2/camel-as2-component/src/test/java/org/apache/camel/component/as2/MendelsonSslEndpointIT.java @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.apache.camel.component.as2; import java.nio.charset.Charset; @@ -29,7 +45,6 @@ import org.slf4j.LoggerFactory; public class MendelsonSslEndpointIT extends AbstractAS2ITSupport { private static final Logger LOG = LoggerFactory.getLogger(MendelsonSslEndpointIT.class); - private MendelsonCertLoader mendelsonCertLoader; private static HostnameVerifier hostnameVerifier; private static final String[] SIGNED_RECEIPT_MIC_ALGORITHMS = new String[] { "sha1", "md5" }; @@ -61,6 +76,8 @@ public class MendelsonSslEndpointIT extends AbstractAS2ITSupport { + "UNT+23+00000000000117'\n" + "UNZ+1+00000000000778'\n"; + private MendelsonCertLoader mendelsonCertLoader; + @BeforeAll public void setupTest() { hostnameVerifier = new NoopHostnameVerifier();