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

com.haz4j.swagger.structure.ClassStruct Maven / Gradle / Ivy

Go to download

This project is implementation of swagger for JSON-RPC with Spring Boot. It generates UI that helps delelopers test api and share it with colleagues

The newest version!
package com.haz4j.swagger.structure;

import lombok.Getter;
import org.apache.commons.lang3.tuple.Pair;

import java.util.Collections;
import java.util.List;

@Getter
public class ClassStruct {

    private final Pair tag;
    private final String path;
    private final List methods;

    public ClassStruct(Pair tag, String path, List methods) {
        this.tag = tag;
        this.path = path;
        this.methods = Collections.unmodifiableList(methods);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy