Interface WriterResolver
- All Known Implementing Classes:
StandardWriterResolver
public interface WriterResolver
A
WriterResolver
is used to access the Writer
that should be used to
write a snippet for an operation that is being documented.- Author:
- Andy Wilkinson
-
Method Summary
Modifier and TypeMethodDescriptionresolve
(String operationName, String snippetName, RestDocumentationContext restDocumentationContext) Returns a writer that can be used to write the snippet with the given name for the operation with the given name.
-
Method Details
-
resolve
Writer resolve(String operationName, String snippetName, RestDocumentationContext restDocumentationContext) throws IOException Returns a writer that can be used to write the snippet with the given name for the operation with the given name.- Parameters:
operationName
- the name of the operation that is being documentedsnippetName
- the name of the snippetrestDocumentationContext
- the current documentation context- Returns:
- the writer
- Throws:
IOException
- if a writer cannot be resolved
-