Searched defs:Inbound (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/admin/payload/
H A DTextPayloadImpl.java78 public static class Inbound extends PayloadImpl.Inbound { class in class:TextPayloadImpl
83 public static Inbound newInstance(final String messageContentType, final InputStream is) {
84 return new Inbound(messageContentType, is);
88 * Does this Inbound Payload implementation support the given content type?
96 private Inbound(final String contentType, final InputStream is) { method in class:TextPayloadImpl.Inbound
H A DZipPayloadImpl.java121 * Zip implementation of the Inbound Payload.
146 static class Inbound extends PayloadImpl.Inbound { class in class:ZipPayloadImpl
153 private Inbound(final InputStream is) throws IOException { method in class:ZipPayloadImpl.Inbound
186 private final Inbound inboundPayload;
189 private ZipEntryInputStream(final Inbound inboundPayload) {
247 * Returns a new Zip implementation of the Inbound Payload.
250 * @return Payload.Inbound containing the data from the specified input stream;
255 public static Inbound newInstance(final String payloadContentType, final InputStream is) throws IOException {
256 return new Inbound(i
[all...]
H A DPayloadImpl.java405 * Partial implementation of the Inbound interface.
407 public static abstract class Inbound implements Payload.Inbound { class in class:PayloadImpl
410 * Creates a new Inbound Payload of the given content type, read from
418 public static Inbound newInstance(final String payloadContentType, final InputStream is) throws IOException {
422 if (TextPayloadImpl.Inbound.supportsContentType(payloadContentType)) {
423 return TextPayloadImpl.Inbound.newInstance(payloadContentType, is);
424 } else if (ZipPayloadImpl.Inbound.supportsContentType(payloadContentType)) {
425 return ZipPayloadImpl.Inbound.newInstance(payloadContentType, is);
439 private static final Inbound EMPTY_PAYLOA
[all...]
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/
H A DPayload.java80 * <h3>Inbound</h3>
83 * {@link Payload.Inbound}. (The {@link org.glassfish.admin.payload.PayloadImpl.Inbound}
86 * Payload.Inbound exposes the {@link Payload.Inbound#parts()} method
354 public static interface Inbound { interface in interface:Payload

Completed in 80 milliseconds