From 2a686f51335e243ccd71dac0ad9b0b338a55a9d4 Mon Sep 17 00:00:00 2001 From: "Captain.B" Date: Sat, 9 May 2020 16:49:43 +0800 Subject: [PATCH] lombok --- .../metersphere/config/JmeterProperties.java | 19 +- .../metersphere/config/KafkaProperties.java | 229 +----------------- 2 files changed, 12 insertions(+), 236 deletions(-) diff --git a/backend/src/main/java/io/metersphere/config/JmeterProperties.java b/backend/src/main/java/io/metersphere/config/JmeterProperties.java index 8319b6da7e..bfe302b5fd 100644 --- a/backend/src/main/java/io/metersphere/config/JmeterProperties.java +++ b/backend/src/main/java/io/metersphere/config/JmeterProperties.java @@ -1,9 +1,13 @@ package io.metersphere.config; +import lombok.Getter; +import lombok.Setter; import org.springframework.boot.context.properties.ConfigurationProperties; @ConfigurationProperties(prefix = JmeterProperties.JMETER_PREFIX) +@Setter +@Getter public class JmeterProperties { public static final String JMETER_PREFIX = "jmeter"; @@ -12,19 +16,4 @@ public class JmeterProperties { private String home; - public String getImage() { - return image; - } - - public void setImage(String image) { - this.image = image; - } - - public String getHome() { - return home; - } - - public void setHome(String home) { - this.home = home; - } } diff --git a/backend/src/main/java/io/metersphere/config/KafkaProperties.java b/backend/src/main/java/io/metersphere/config/KafkaProperties.java index c0036f475c..912352b24b 100644 --- a/backend/src/main/java/io/metersphere/config/KafkaProperties.java +++ b/backend/src/main/java/io/metersphere/config/KafkaProperties.java @@ -1,8 +1,12 @@ package io.metersphere.config; +import lombok.Getter; +import lombok.Setter; import org.springframework.boot.context.properties.ConfigurationProperties; @ConfigurationProperties(prefix = KafkaProperties.KAFKA_PREFIX) +@Getter +@Setter public class KafkaProperties { public static final String KAFKA_PREFIX = "kafka"; @@ -22,112 +26,8 @@ public class KafkaProperties { private KafkaProperties.Ssl ssl = new KafkaProperties.Ssl(); private KafkaProperties.Log log = new KafkaProperties.Log(); - public String getAcks() { - return acks; - } - - public void setAcks(String acks) { - this.acks = acks; - } - - public String getTopic() { - return topic; - } - - public void setTopic(String topic) { - this.topic = topic; - } - - public String getFields() { - return fields; - } - - public void setFields(String fields) { - this.fields = fields; - } - - public String getTimestamp() { - return timestamp; - } - - public void setTimestamp(String timestamp) { - this.timestamp = timestamp; - } - - public String getBootstrapServers() { - return bootstrapServers; - } - - public void setBootstrapServers(String bootstrapServers) { - this.bootstrapServers = bootstrapServers; - } - - public String getSampleFilter() { - return sampleFilter; - } - - public void setSampleFilter(String sampleFilter) { - this.sampleFilter = sampleFilter; - } - - public String getTestMode() { - return testMode; - } - - public void setTestMode(String testMode) { - this.testMode = testMode; - } - - - public String getCompressionType() { - return compressionType; - } - - public void setCompressionType(String compressionType) { - this.compressionType = compressionType; - } - - - public String getClientId() { - return clientId; - } - - public void setClientId(String clientId) { - this.clientId = clientId; - } - - public String getParseAllReqHeaders() { - return parseAllReqHeaders; - } - - public void setParseAllReqHeaders(String parseAllReqHeaders) { - this.parseAllReqHeaders = parseAllReqHeaders; - } - - public String getParseAllResHeaders() { - return parseAllResHeaders; - } - - public void setParseAllResHeaders(String parseAllResHeaders) { - this.parseAllResHeaders = parseAllResHeaders; - } - - public String getBatchSize() { - return batchSize; - } - - public void setBatchSize(String batchSize) { - this.batchSize = batchSize; - } - - public String getConnectionsMaxIdleMs() { - return connectionsMaxIdleMs; - } - - public void setConnectionsMaxIdleMs(String connectionsMaxIdleMs) { - this.connectionsMaxIdleMs = connectionsMaxIdleMs; - } - + @Getter + @Setter public static class Ssl { private String enabled = "false"; private String keyPassword; @@ -140,124 +40,11 @@ public class KafkaProperties { private String protocol; private String enabledProtocols; private String provider; - - public Ssl() { - } - - public String getEnabled() { - return enabled; - } - - public void setEnabled(String enabled) { - this.enabled = enabled; - } - - public String getKeyPassword() { - return keyPassword; - } - - public void setKeyPassword(String keyPassword) { - this.keyPassword = keyPassword; - } - - public String getKeystoreLocation() { - return keystoreLocation; - } - - public void setKeystoreLocation(String keystoreLocation) { - this.keystoreLocation = keystoreLocation; - } - - public String getKeystorePassword() { - return keystorePassword; - } - - public void setKeystorePassword(String keystorePassword) { - this.keystorePassword = keystorePassword; - } - - public String getKeystoreType() { - return keystoreType; - } - - public void setKeystoreType(String keystoreType) { - this.keystoreType = keystoreType; - } - - public String getTruststoreLocation() { - return truststoreLocation; - } - - public void setTruststoreLocation(String truststoreLocation) { - this.truststoreLocation = truststoreLocation; - } - - public String getTruststorePassword() { - return truststorePassword; - } - - public void setTruststorePassword(String truststorePassword) { - this.truststorePassword = truststorePassword; - } - - public String getTruststoreType() { - return truststoreType; - } - - public void setTruststoreType(String truststoreType) { - this.truststoreType = truststoreType; - } - - public String getProtocol() { - return protocol; - } - - public void setProtocol(String protocol) { - this.protocol = protocol; - } - - public String getEnabledProtocols() { - return enabledProtocols; - } - - public void setEnabledProtocols(String enabledProtocols) { - this.enabledProtocols = enabledProtocols; - } - - public String getProvider() { - return provider; - } - - public void setProvider(String provider) { - this.provider = provider; - } - } - - public Ssl getSsl() { - return ssl; - } - - public void setSsl(Ssl ssl) { - this.ssl = ssl; } + @Getter + @Setter public static class Log { private String topic; - - public String getTopic() { - return topic; - } - - public void setTopic(String topic) { - this.topic = topic; - } - } - - public Log getLog() { - return log; - } - - public void setLog(Log log) { - this.log = log; } }