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

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

There is a newer version: 4.0.1
Show newest version
package io.github.factoryfx.microservice.common;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;


public class VoidUserAwareRequest extends UserAwareRequest {

    @JsonCreator
    public VoidUserAwareRequest(@JsonProperty("user")String user, @JsonProperty("passwordHash")String passwordHash) {
        super(user, passwordHash, null);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy