Switch back from Lombok to plain getters and setters in AutoServiceRegistrationProperties
This commit is contained in:
@@ -2,15 +2,10 @@ package org.springframework.cloud.client.serviceregistry;
|
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* @author Spencer Gibb
|
||||
*/
|
||||
@ConfigurationProperties("spring.cloud.service-registry.auto-registration")
|
||||
@Getter
|
||||
@Setter
|
||||
public class AutoServiceRegistrationProperties {
|
||||
|
||||
/** If Auto-Service Registration is enabled, default to true. */
|
||||
@@ -19,7 +14,22 @@ public class AutoServiceRegistrationProperties {
|
||||
/** Whether to register the management as a service, defaults to true */
|
||||
private boolean registerManagement = true;
|
||||
|
||||
public boolean shouldRegisterManagement() {
|
||||
return registerManagement;
|
||||
}
|
||||
|
||||
public void setRegisterManagement(boolean registerManagement) {
|
||||
this.registerManagement = registerManagement;
|
||||
}
|
||||
|
||||
/** Should startup fail if there is no AutoServiceRegistration, default to false. */
|
||||
private boolean failFast = false;
|
||||
|
||||
public boolean isFailFast() {
|
||||
return failFast;
|
||||
}
|
||||
|
||||
public void setFailFast(boolean failFast) {
|
||||
this.failFast = failFast;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user