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

uk.co.mruoc.jsonapi.ApiDocument Maven / Gradle / Ivy

Go to download

Library containing jackson module and classes to help building APIs that follow the json api spec in Java

There is a newer version: 2.0.16
Show newest version
package uk.co.mruoc.jsonapi;

import lombok.Data;
import lombok.RequiredArgsConstructor;

@RequiredArgsConstructor
@Data
public class ApiDocument {

    private final ApiData data;

    public T getAttributes() {
        return data.getAttributes();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy