- java.lang.Object
-
- io.helidon.media.multipart.MultiPartSupport
-
- All Implemented Interfaces:
MediaSupport
public final class MultiPartSupport extends Object implements MediaSupport
Multipart media support.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MultiPartSupport
create()
Create a new instance ofMultiPartSupport
.Collection<MessageBodyReader<?>>
readers()
Returns the collection of the readers which should be registered.Collection<MessageBodyStreamReader<?>>
streamReaders()
Returns the collection of the stream readers which should be registered.Collection<MessageBodyStreamWriter<?>>
streamWriters()
Returns the collection of the stream writers which should be registered.Collection<MessageBodyWriter<?>>
writers()
Returns the collection of the writers which should be registered.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.helidon.media.common.MediaSupport
register
-
-
-
-
Method Detail
-
readers
public Collection<MessageBodyReader<?>> readers()
Description copied from interface:MediaSupport
Returns the collection of the readers which should be registered.- Specified by:
readers
in interfaceMediaSupport
- Returns:
- readers
-
writers
public Collection<MessageBodyWriter<?>> writers()
Description copied from interface:MediaSupport
Returns the collection of the writers which should be registered.- Specified by:
writers
in interfaceMediaSupport
- Returns:
- writers
-
streamReaders
public Collection<MessageBodyStreamReader<?>> streamReaders()
Description copied from interface:MediaSupport
Returns the collection of the stream readers which should be registered.- Specified by:
streamReaders
in interfaceMediaSupport
- Returns:
- stream readers
-
streamWriters
public Collection<MessageBodyStreamWriter<?>> streamWriters()
Description copied from interface:MediaSupport
Returns the collection of the stream writers which should be registered.- Specified by:
streamWriters
in interfaceMediaSupport
- Returns:
- stream writers
-
create
public static MultiPartSupport create()
Create a new instance ofMultiPartSupport
.- Returns:
- MultiPartSupport
-
-