gen.org.tkit.apm.model.PermissionDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tkit-quarkus-portal-mvc Show documentation
Show all versions of tkit-quarkus-portal-mvc Show documentation
1000kit mvc library for the Quarkus framework
package gen.org.tkit.apm.model;
import javax.json.bind.annotation.JsonbProperty;
import javax.validation.Valid;
import javax.validation.constraints.*;
import lombok.Data;
@Data
@lombok.ToString
@io.quarkus.runtime.annotations.RegisterForReflection
public class PermissionDTO {
@JsonbProperty("resource")
public @Valid String resource = null;
@JsonbProperty("action")
public @Valid String action = null;
@JsonbProperty("key")
public @Valid String key = null;
}