com.almis.awe.developer.autoconfigure.config.MyMemoryConfigProperties 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 lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* MyMemory config properties
*/
@Data
@ConfigurationProperties(prefix = "awe.developer.translation.mymemory")
public class MyMemoryConfigProperties {
/**
* MyMemory api key
* Default value 10ecdc1ed89ac3ebed3b
*/
private String key = "10ecdc1ed89ac3ebed3b";
/**
* MyMemory translation service host
* Default value api.mymemory.translated.net
*/
private String host = "api.mymemory.translated.net";
/**
* Translation service reference email
* Default value [email protected]
*/
private String email = "[email protected]";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy