<?xml version="1.0" encoding="UTF-8"?>
<!--
~ ============LICENSE_START=======================================================
- ~ PROJECT
+ ~ PNF-REGISTRATION-HANDLER
~ ================================================================================
~ Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
~ ================================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ ============LICENSE_START=======================================================
- ~ PROJECT
+ ~ PNF-REGISTRATION-HANDLER
~ ================================================================================
~ Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
~ ================================================================================
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ~ ============LICENSE_START=======================================================
+ ~ PNF-REGISTRATION-HANDLER
+ ~ ================================================================================
+ ~ Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
+ ~ ================================================================================
+ ~ Licensed 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.
+ ~ ============LICENSE_END=========================================================
+ -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
/**
* @author <a href="mailto:przemyslaw.wasala@nokia.com">Przemysław Wąsala</a> on 3/23/18
*/
+@FunctionalInterface
public interface DmaapTask {
void execute() throws AAINotFoundException;
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
LocalDateTime.now()));
try {
dmaapConsumerTask.execute();
-
- } catch (AAINotFoundException | RuntimeException e) {
- logger.warn("Task scheduledTaskAskingDMaaPOfConsumeEvent()::AAINotFoundException :: Execution Time - {}:{}",
- dateTimeFormatter.format(
- LocalDateTime.now()), e.getMessage());
+ } catch (AAINotFoundException e) {
+ logger
+ .error("Task scheduledTaskAskingDMaaPOfConsumeEvent()::AAINotFoundException :: Execution Time - {}:{}",
+ dateTimeFormatter.format(
+ LocalDateTime.now()), e.getMessage());
}
}
import static org.mockito.Mockito.atLeast;
import static org.mockito.Mockito.verify;
+import java.time.Duration;
+import java.util.concurrent.Callable;
+import java.util.concurrent.Executors;
+import java.util.concurrent.ScheduledExecutorService;
+import java.util.concurrent.TimeUnit;
import org.junit.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.runner.RunWith;
@ContextConfiguration(locations = {"classpath:scheduled-context.xml"})
public class ScheduledXmlContextITest extends AbstractTestNGSpringContextTests {
- private static final int WAIT_FOR_SCHEDULING = 1000;
+ private static final int WAIT_FOR_SCHEDULING = 1;
@Autowired
private DmaapConsumerTask dmaapConsumerTaskSpy;
@Test
public void testScheduling() throws InterruptedException {
- Thread.sleep(WAIT_FOR_SCHEDULING);
+ final ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor();
+ executorService.scheduleWithFixedDelay(this::verifyDmaapConsumerTask, 0, WAIT_FOR_SCHEDULING, TimeUnit.SECONDS);
+ }
+
+ private void verifyDmaapConsumerTask() {
verify(dmaapConsumerTaskSpy, atLeast(2)).execute();
}
+
+
}
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ ============LICENSE_START=======================================================
- ~ PROJECT
+ ~ PNF-REGISTRATION-HANDLER
~ ================================================================================
~ Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
~ ================================================================================
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
* @author <a href="mailto:przemyslaw.wasala@nokia.com">Przemysław Wąsala</a> on 3/23/18
*/
@Value.Immutable(prehash = true)
-@Value.Style(stagedBuilder = true)
-public abstract class DmaapConsumerConfiguration implements DmaapConfig {
+@Value.Style(visibility = Value.Style.ImplementationVisibility.PACKAGE)
+public abstract class DmaapConsumerConfiguration implements DmaapCustomConfig {
private static final long serialVersionUID = 1L;
- @Value.Parameter
- public abstract String consumerId();
- @Value.Parameter
- public abstract String consumerGroup();
+ abstract String consumerId();
- @Value.Parameter
- public abstract Integer timeoutMS();
+ abstract String consumerGroup();
- @Value.Parameter
- public abstract Integer messageLimit();
+ abstract Integer timeoutMS();
- @Value.Parameter
- public abstract String dmmaphostName();
+ abstract Integer messageLimit();
- @Value.Parameter
- public abstract Integer dmmapportNumber();
- @Value.Parameter
- public abstract String dmmaptopicName();
+ public interface Builder extends
+ DmaapCustomConfig.Builder<DmaapConsumerConfiguration, DmaapConsumerConfiguration.Builder> {
- @Value.Parameter
- public abstract String dmmapprotocol();
+ Builder consumerId(String consumerId);
- @Value.Parameter
- public abstract String dmmapuserName();
+ Builder consumerGroup(String consumerGroup);
- @Value.Parameter
- public abstract String dmmapuserPassword();
+ Builder timeoutMS(Integer timeoutMS);
+
+ Builder messageLimit(Integer messageLimit);
+ }
+
+ public static DmaapConsumerConfiguration.Builder builder() {
+ return ImmutableDmaapConsumerConfiguration.builder();
+ }
- @Value.Parameter
- public abstract String dmmapcontentType();
}
\ No newline at end of file
--- /dev/null
+/*-
+ * ============LICENSE_START=======================================================
+ * PNF-REGISTRATION-HANDLER
+ * ================================================================================
+ * Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed 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.
+ * ============LICENSE_END=========================================================
+ */
+package org.onap.dcaegen2.services.config;
+
+/**
+ * @author <a href="mailto:przemyslaw.wasala@nokia.com">Przemysław Wąsala</a> on 3/28/18
+ */
+public interface DmaapCustomConfig extends DmaapConfig {
+
+ String dmmaphostName();
+
+ Integer dmmapportNumber();
+
+ String dmmaptopicName();
+
+ String dmmapprotocol();
+
+ String dmmapuserName();
+
+ String dmmapuserPassword();
+
+ String dmmapcontentType();
+
+
+ interface Builder<T extends DmaapCustomConfig, B extends Builder<T, B>> {
+
+ B dmmaphostName(String dmmaphostName);
+
+ B dmmapportNumber(Integer dmmapportNumber);
+
+ B dmmaptopicName(String dmmaptopicName);
+
+ B dmmapprotocol(String dmmapprotocol);
+
+ B dmmapuserName(String dmmapuserName);
+
+ B dmmapuserPassword(String dmmapuserPassword);
+
+ B dmmapcontentType(String dmmapcontentType);
+
+ T build();
+ }
+}
/*-
* ============LICENSE_START=======================================================
- * PROJECT
+ * PNF-REGISTRATION-HANDLER
* ================================================================================
* Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
* ================================================================================
* @author <a href="mailto:przemyslaw.wasala@nokia.com">Przemysław Wąsala</a> on 3/23/18
*/
@Value.Immutable(prehash = true)
-@Value.Style(stagedBuilder = true)
-public abstract class DmaapProducerConfiguration implements DmaapConfig {
+@Value.Style(visibility = Value.Style.ImplementationVisibility.PACKAGE)
+public abstract class DmaapProducerConfiguration implements DmaapCustomConfig {
private static final long serialVersionUID = 1L;
- @Value.Parameter
- public abstract String dmmaphostName();
+ public interface Builder extends
+ DmaapCustomConfig.Builder<DmaapProducerConfiguration, DmaapProducerConfiguration.Builder> {
+ }
- @Value.Parameter
- public abstract Integer dmmapportNumber();
-
- @Value.Parameter
- public abstract String dmmaptopicName();
-
- @Value.Parameter
- public abstract String dmmapprotocol();
-
- @Value.Parameter
- public abstract String dmmapuserName();
-
- @Value.Parameter
- public abstract String dmmapuserPassword();
-
- @Value.Parameter
- public abstract String dmmapcontentType();
+ public static Builder builder() {
+ return ImmutableDmaapProducerConfiguration.builder();
+ }
}