io.github.factoryfx.microservice.common.UserLocaleResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microserviceRestCommon Show documentation
Show all versions of microserviceRestCommon Show documentation
factoryfx dependency injection framework
package io.github.factoryfx.microservice.common;
import java.util.Locale;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
public class UserLocaleResponse {
public final Locale locale;
@JsonCreator
public UserLocaleResponse(@JsonProperty("valid")Locale locale) {
this.locale = locale;
}
}