All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.factoryfx.microservice.common.KeyResponse Maven / Gradle / Ivy

The newest version!
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;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy