Uses of Interface
org.eclipse.microprofile.openapi.models.info.Contact
-
Packages that use Contact Package Description org.eclipse.microprofile.openapi A set of Java interfaces, annotations and programming models which allow Java developers to natively produce OpenAPI v3.1 documents from their Jakarta REST applications.org.eclipse.microprofile.openapi.models.info A set of interfaces of programmable models to represent metadata about the API, including license information and contact information of the exposed API. -
-
Uses of Contact in org.eclipse.microprofile.openapi
Methods in org.eclipse.microprofile.openapi that return Contact Modifier and Type Method Description static ContactOASFactory. createContact()This method creates a newContactinstance. -
Uses of Contact in org.eclipse.microprofile.openapi.models.info
Methods in org.eclipse.microprofile.openapi.models.info that return Contact Modifier and Type Method Description default ContactContact. email(String email)Sets this Contact instance's contact email to the given email and returns this instance of ContactContactInfo. getContact()Returns the contact information for the exposed API from this Info instance.default ContactContact. name(String name)Sets this Contact instance's identifying name to the given name and returns this instance of Contact.default ContactContact. url(String url)Sets this Contact instance's URL pointing to the contact information and returns this instance of Contact.Methods in org.eclipse.microprofile.openapi.models.info with parameters of type Contact Modifier and Type Method Description default InfoInfo. contact(Contact contact)Sets this Info instance's contact information for the exposed API and returns this instance of Info.voidInfo. setContact(Contact contact)Sets this Info instance's contact information for the exposed API.
-