com.almis.awe.developer.autoconfigure.config.DeveloperConfigProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of awe-developer-spring-boot-starter Show documentation
Show all versions of awe-developer-spring-boot-starter Show documentation
AWE Spring Boot Starter Developer
package com.almis.awe.developer.autoconfigure.config;
import com.almis.awe.developer.translators.TranslationServiceEnum;
import lombok.Data;
import lombok.experimental.Accessors;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* Developer module properties
*/
@Data
@Accessors(chain = true)
@ConfigurationProperties(prefix = "awe.developer")
public class DeveloperConfigProperties {
/**
* Developer path. Used to manage the locale files.
* Default value ${user.home}/awe-developer
*/
@Value("${user.home}/awe-developer")
private String path;
/**
* Path file name
* Default value path.properties
*/
private String pathFile = "path.properties";
/**
* Path property name
* Default value path.project
*/
private String pathProperty = "path.project";
/**
* Translation service
* Default value MY_MEMORY
*/
private TranslationServiceEnum translationService = TranslationServiceEnum.MY_MEMORY;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy