io.github.factoryfx.microservice.common.KeyResponse 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 com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
public class KeyResponse {
public final String key;
@JsonCreator
public KeyResponse(@JsonProperty("valid")String key) {
this.key = key;
}
}