View Javadoc
1   package org.openehealth.ipf.boot;
2   
3   import lombok.Getter;
4   import lombok.Setter;
5   import org.springframework.boot.context.properties.ConfigurationProperties;
6   
7   /**
8    *
9    */
10  @ConfigurationProperties(prefix = "ipf.commons")
11  public class IpfConfigurationProperties {
12  
13      /**
14       * Determines if an existing Spring Boot SSL configuration (server.ssl.*) shall be reused for constructing
15       * a Camel SSLContextParameter bean
16       */
17      @Getter @Setter
18      boolean reuseSslConfig = false;
19  }