Package io.muserver.openapi
Class PathItemObject
- java.lang.Object
-
- io.muserver.openapi.PathItemObject
-
public class PathItemObject extends java.lang.Object
- See Also:
PathItemObjectBuilder
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
description()
java.util.Map<java.lang.String,OperationObject>
operations()
java.util.List<ParameterObject>
parameters()
java.util.List<ServerObject>
servers()
java.lang.String
summary()
void
writeJson(java.io.Writer writer)
-
-
-
Method Detail
-
writeJson
public void writeJson(java.io.Writer writer) throws java.io.IOException
- Throws:
java.io.IOException
-
summary
public java.lang.String summary()
- Returns:
- the value described by
PathItemObjectBuilder.withSummary(java.lang.String)
-
description
public java.lang.String description()
- Returns:
- the value described by
PathItemObjectBuilder.withDescription(java.lang.String)
-
operations
public java.util.Map<java.lang.String,OperationObject> operations()
- Returns:
- the value described by
PathItemObjectBuilder.withOperations(java.util.Map<java.lang.String, io.muserver.openapi.OperationObject>)
-
servers
public java.util.List<ServerObject> servers()
- Returns:
- the value described by
PathItemObjectBuilder.withServers(java.util.List<io.muserver.openapi.ServerObject>)
-
parameters
public java.util.List<ParameterObject> parameters()
- Returns:
- the value described by
PathItemObjectBuilder.withParameters(java.util.List<io.muserver.openapi.ParameterObject>)
-
-