Test lombok on AmqpProperties (#1585)
Signed-off-by: Marinov Avgustin <Avgustin.Marinov@bosch.com>
This commit is contained in:
@@ -9,6 +9,7 @@
|
|||||||
*/
|
*/
|
||||||
package org.eclipse.hawkbit.amqp;
|
package org.eclipse.hawkbit.amqp;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -16,6 +17,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
|
|||||||
* connection.
|
* connection.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@Data
|
||||||
@ConfigurationProperties("hawkbit.dmf.rabbitmq")
|
@ConfigurationProperties("hawkbit.dmf.rabbitmq")
|
||||||
public class AmqpProperties {
|
public class AmqpProperties {
|
||||||
|
|
||||||
@@ -66,68 +68,4 @@ public class AmqpProperties {
|
|||||||
* Delay for messages that are requeued in milliseconds.
|
* Delay for messages that are requeued in milliseconds.
|
||||||
*/
|
*/
|
||||||
private long requeueDelay = DEFAULT_REQUEUE_DELAY;
|
private long requeueDelay = DEFAULT_REQUEUE_DELAY;
|
||||||
|
|
||||||
public long getRequeueDelay() {
|
|
||||||
return requeueDelay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRequeueDelay(final long requeueDelay) {
|
|
||||||
this.requeueDelay = requeueDelay;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getDeclarationRetries() {
|
|
||||||
return declarationRetries;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeclarationRetries(final int declarationRetries) {
|
|
||||||
this.declarationRetries = declarationRetries;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getAuthenticationReceiverQueue() {
|
|
||||||
return authenticationReceiverQueue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAuthenticationReceiverQueue(final String authenticationReceiverQueue) {
|
|
||||||
this.authenticationReceiverQueue = authenticationReceiverQueue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isMissingQueuesFatal() {
|
|
||||||
return missingQueuesFatal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMissingQueuesFatal(final boolean missingQueuesFatal) {
|
|
||||||
this.missingQueuesFatal = missingQueuesFatal;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDeadLetterExchange() {
|
|
||||||
return deadLetterExchange;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeadLetterExchange(final String deadLetterExchange) {
|
|
||||||
this.deadLetterExchange = deadLetterExchange;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDeadLetterQueue() {
|
|
||||||
return deadLetterQueue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDeadLetterQueue(final String deadLetterQueue) {
|
|
||||||
this.deadLetterQueue = deadLetterQueue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getReceiverQueue() {
|
|
||||||
return receiverQueue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setReceiverQueue(final String receiverQueue) {
|
|
||||||
this.receiverQueue = receiverQueue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isEnabled() {
|
|
||||||
return enabled;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEnabled(final boolean enabled) {
|
|
||||||
this.enabled = enabled;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,6 +26,4 @@
|
|||||||
<module>hawkbit-dmf-amqp</module>
|
<module>hawkbit-dmf-amqp</module>
|
||||||
<module>hawkbit-dmf-rabbitmq-test</module>
|
<module>hawkbit-dmf-rabbitmq-test</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
Reference in New Issue
Block a user