
com.haz4j.swagger.structure.ClassStruct Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger4jsonrpc Show documentation
Show all versions of swagger4jsonrpc Show documentation
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