aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2021-08-02 15:28:00 -0400
committerJim Hahn <jrh3@att.com>2021-08-06 09:22:13 -0400
commit338cc2611738783285f9edebd259f7e6bff3973d (patch)
tree86518ff526b89e6f2d24fb7ed1882fe95dd5c8e1 /plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src
parent7438fe5a86a9fcfaf248ee32197b24d1badaecb3 (diff)
Use lombok in apex-pdp #3
Updated plugins thru plugins-persistence-jpa-eclipselink. Issue-ID: POLICY-3391 Change-Id: Id7a5aeca8bb45c7a089f0b9d49c9ecd4bc8a7178 Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src')
-rw-r--r--plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src/main/java/org/onap/policy/apex/plugins/event/carrier/jms/ApexJmsProducer.java11
-rw-r--r--plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src/main/java/org/onap/policy/apex/plugins/event/carrier/jms/JmsCarrierTechnologyParameters.java166
2 files changed, 7 insertions, 170 deletions
diff --git a/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src/main/java/org/onap/policy/apex/plugins/event/carrier/jms/ApexJmsProducer.java b/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src/main/java/org/onap/policy/apex/plugins/event/carrier/jms/ApexJmsProducer.java
index 44ed810fd..42bde24ca 100644
--- a/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src/main/java/org/onap/policy/apex/plugins/event/carrier/jms/ApexJmsProducer.java
+++ b/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src/main/java/org/onap/policy/apex/plugins/event/carrier/jms/ApexJmsProducer.java
@@ -2,6 +2,7 @@
* ============LICENSE_START=======================================================
* Copyright (C) 2016-2018 Ericsson. All rights reserved.
* Modifications Copyright (C) 2019-2021 Nordix Foundation.
+ * Modifications Copyright (C) 2021 AT&T 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.
@@ -33,6 +34,7 @@ import javax.jms.Session;
import javax.jms.Topic;
import javax.naming.InitialContext;
import javax.naming.NamingException;
+import lombok.Getter;
import org.onap.policy.apex.service.engine.event.ApexEventException;
import org.onap.policy.apex.service.engine.event.ApexEventProducer;
import org.onap.policy.apex.service.engine.event.ApexEventRuntimeException;
@@ -70,6 +72,7 @@ public class ApexJmsProducer implements ApexEventProducer {
private MessageProducer messageProducer;
// The name for this producer
+ @Getter
private String name = null;
// The peer references for this event handler
@@ -175,14 +178,6 @@ public class ApexJmsProducer implements ApexEventProducer {
* {@inheritDoc}.
*/
@Override
- public String getName() {
- return name;
- }
-
- /**
- * {@inheritDoc}.
- */
- @Override
public PeeredReference getPeeredReference(final EventHandlerPeeredMode peeredMode) {
return peerReferenceMap.get(peeredMode);
}
diff --git a/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src/main/java/org/onap/policy/apex/plugins/event/carrier/jms/JmsCarrierTechnologyParameters.java b/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src/main/java/org/onap/policy/apex/plugins/event/carrier/jms/JmsCarrierTechnologyParameters.java
index d4647b584..3e2f239df 100644
--- a/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src/main/java/org/onap/policy/apex/plugins/event/carrier/jms/JmsCarrierTechnologyParameters.java
+++ b/plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-jms/src/main/java/org/onap/policy/apex/plugins/event/carrier/jms/JmsCarrierTechnologyParameters.java
@@ -24,6 +24,8 @@ package org.onap.policy.apex.plugins.event.carrier.jms;
import java.util.Properties;
import javax.naming.Context;
+import lombok.Getter;
+import lombok.Setter;
import org.onap.policy.apex.service.parameters.carriertechnology.CarrierTechnologyParameters;
import org.onap.policy.common.parameters.annotations.Min;
import org.onap.policy.common.parameters.annotations.NotBlank;
@@ -70,6 +72,8 @@ import org.onap.policy.common.parameters.annotations.NotNull;
*
* @author Liam Fallon (liam.fallon@ericsson.com)
*/
+@Getter
+@Setter
public class JmsCarrierTechnologyParameters extends CarrierTechnologyParameters {
/** The label of this carrier technology. */
public static final String JMS_CARRIER_TECHNOLOGY_LABEL = "JMS";
@@ -173,166 +177,4 @@ public class JmsCarrierTechnologyParameters extends CarrierTechnologyParameters
return jmsProperties;
}
-
- /**
- * Gets the connection factory.
- *
- * @return the connection factory
- */
- public String getConnectionFactory() {
- return connectionFactory;
- }
-
- /**
- * Gets the initial context factory.
- *
- * @return the initial context factory
- */
- public String getInitialContextFactory() {
- return initialContextFactory;
- }
-
- /**
- * Gets the provider URL.
- *
- * @return the provider URL
- */
- public String getProviderUrl() {
- return providerUrl;
- }
-
- /**
- * Gets the security principal.
- *
- * @return the security principal
- */
- public String getSecurityPrincipal() {
- return securityPrincipal;
- }
-
- /**
- * Gets the security credentials.
- *
- * @return the security credentials
- */
- public String getSecurityCredentials() {
- return securityCredentials;
- }
-
- /**
- * Gets the producer topic.
- *
- * @return the producer topic
- */
- public String getProducerTopic() {
- return producerTopic;
- }
-
- /**
- * Gets the consumer topic.
- *
- * @return the consumer topic
- */
- public String getConsumerTopic() {
- return consumerTopic;
- }
-
- /**
- * Gets the consumer wait time.
- *
- * @return the consumer wait time
- */
- public long getConsumerWaitTime() {
- return consumerWaitTime;
- }
-
- /**
- * Sets the connection factory.
- *
- * @param connectionFactory the connection factory
- */
- public void setConnectionFactory(final String connectionFactory) {
- this.connectionFactory = connectionFactory;
- }
-
- /**
- * Sets the initial context factory.
- *
- * @param initialContextFactory the initial context factory
- */
- public void setInitialContextFactory(final String initialContextFactory) {
- this.initialContextFactory = initialContextFactory;
- }
-
- /**
- * Sets the provider URL.
- *
- * @param providerUrl the provider URL
- */
- public void setProviderUrl(final String providerUrl) {
- this.providerUrl = providerUrl;
- }
-
- /**
- * Sets the security principal.
- *
- * @param securityPrincipal the security principal
- */
- public void setSecurityPrincipal(final String securityPrincipal) {
- this.securityPrincipal = securityPrincipal;
- }
-
- /**
- * Sets the security credentials.
- *
- * @param securityCredentials the security credentials
- */
- public void setSecurityCredentials(final String securityCredentials) {
- this.securityCredentials = securityCredentials;
- }
-
- /**
- * Sets the producer topic.
- *
- * @param producerTopic the producer topic
- */
- public void setProducerTopic(final String producerTopic) {
- this.producerTopic = producerTopic;
- }
-
- /**
- * Sets the consumer topic.
- *
- * @param consumerTopic the consumer topic
- */
- public void setConsumerTopic(final String consumerTopic) {
- this.consumerTopic = consumerTopic;
- }
-
- /**
- * Sets the consumer wait time.
- *
- * @param consumerWaitTime the consumer wait time
- */
- public void setConsumerWaitTime(final int consumerWaitTime) {
- this.consumerWaitTime = consumerWaitTime;
- }
-
- /**
- * Checks if is object message sending.
- *
- * @return true, if checks if is object message sending
- */
- public boolean isObjectMessageSending() {
- return objectMessageSending;
- }
-
- /**
- * Sets the object message sending.
- *
- * @param objectMessageSending the object message sending
- */
- public void setObjectMessageSending(final boolean objectMessageSending) {
- this.objectMessageSending = objectMessageSending;
- }
}