com.alon.spring.crud.api.controller.input.Options Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crud-api-base Show documentation
Show all versions of crud-api-base Show documentation
Fornece implementação básica e expansível para criação API's CRUD com Spring Boot e Spring Data JPA.
package com.alon.spring.crud.api.controller.input;
import com.alon.spring.crud.core.validation.ValidProjection;
import java.util.Set;
public class Options {
private Set expand;
@ValidProjection
private String projection;
public Set getExpand() {
return expand;
}
public void setExpand(Set expand) {
this.expand = expand;
}
public String getProjection() {
return projection;
}
public void setProjection(String projection) {
this.projection = projection;
}
}