Searched refs:Inbound (Results 1 - 14 of 14) 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...]
H A DPayloadFilesManager.java87 * ({@link #processParts(org.glassfish.api.admin.Payload.Inbound)}) or a
596 final Payload.Inbound inboundPayload) throws Exception {
641 final Payload.Inbound inboundPayload) throws Exception {
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/
H A DAdminCommandContext.java57 private final Payload.Inbound inboundPayload;
65 final Payload.Inbound inboundPayload,
102 public Payload.Inbound getInboundPayload() {
H A DCommandRunner.java124 CommandInvocation inbound(Payload.Inbound inbound);
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
/glassfish-3.1.2/common/common-util/src/test/java/org/glassfish/admin/payload/
H A DPayloadFilesManagerTest.java68 import org.glassfish.api.admin.Payload.Inbound;
157 protected void checkResults(Inbound ib, PayloadFilesManager instance) throws Exception {
189 protected void checkResults(Inbound ib, PayloadFilesManager instance) throws Exception {
223 protected void checkResults(Inbound ib, PayloadFilesManager instance) throws Exception {
249 protected void checkResults(Inbound ib, PayloadFilesManager instance) throws Exception {
339 protected void checkResults(Inbound ib, PayloadFilesManager instance) throws Exception {
449 protected void checkResults(Inbound ib, PayloadFilesManager instance) throws Exception {
475 Payload.Inbound removerIB = PayloadImpl.Inbound.newInstance("application/zip", bais);
570 protected void checkResults(Inbound i
[all...]
H A DPayloadImplTest.java332 Payload.Inbound inboundPayload = PayloadImpl.Inbound.newInstance("application/zip", is);
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/embeddable/
H A DDeployerImpl.java266 final PayloadImpl.Inbound inboundPayload = PayloadImpl.Inbound.newInstance(
/glassfish-3.1.2/cluster/cli/src/main/java/com/sun/enterprise/admin/cli/cluster/
H A DImportSyncBundleCommand.java270 Payload.Inbound payload = null;
273 payload = PayloadImpl.Inbound.newInstance("application/zip", in);
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/remote/
H A DRemoteAdminCommand.java524 Payload.Inbound inboundPayload =
525 PayloadImpl.Inbound.newInstance(responseContentType, in);
1121 Payload.Inbound inboundPayload =
1122 PayloadImpl.Inbound.newInstance(responseContentType, in);
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DCommandRunnerImpl.java1230 protected Payload.Inbound inbound;
1248 public CommandInvocation inbound(Payload.Inbound inbound) {
1282 private Payload.Inbound inboundPayload() {
1438 final Payload.Inbound inboundPayload) throws IOException, Exception {
1454 private void extractFiles(final Payload.Inbound inboundPayload)
H A DAdminAdapter.java438 Payload.Inbound inboundPayload = PayloadImpl.Inbound.newInstance(

Completed in 36 milliseconds