uk.co.mruoc.jsonapi.ApiDataWithId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-json-api Show documentation
Show all versions of jackson-json-api Show documentation
Library containing jackson module and classes to help building APIs that follow the json api spec in Java
package uk.co.mruoc.jsonapi;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Data
public class ApiDataWithId extends ApiData {
private final I id;
public ApiDataWithId(final I id, final String type, T attributes) {
super(type, attributes);
this.id = id;
}
public I getId() {
return id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy