io.github.factoryfx.microservice.common.VoidUserAwareRequest 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 VoidUserAwareRequest extends UserAwareRequest {
@JsonCreator
public VoidUserAwareRequest(@JsonProperty("user")String user, @JsonProperty("passwordHash")String passwordHash) {
super(user, passwordHash, null);
}
}