
com.qdesrame.openapi.diff.model.Endpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-diff Show documentation
Show all versions of openapi-diff Show documentation
Utility for comparing two OpenAPI specifications.
package com.qdesrame.openapi.diff.model;
import io.swagger.v3.oas.models.Operation;
import io.swagger.v3.oas.models.PathItem;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class Endpoint {
private String pathUrl;
private PathItem.HttpMethod method;
private String summary;
private PathItem path;
private Operation operation;
@Override
public String toString() {
return method + " " + pathUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy