/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/admin/payload/ |
H A D | TextPayloadImpl.java | 78 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 D | ZipPayloadImpl.java | 121 * 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 D | PayloadImpl.java | 405 * 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 D | PayloadFilesManager.java | 87 * ({@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 D | AdminCommandContext.java | 57 private final Payload.Inbound inboundPayload; 65 final Payload.Inbound inboundPayload, 102 public Payload.Inbound getInboundPayload() {
|
H A D | CommandRunner.java | 124 CommandInvocation inbound(Payload.Inbound inbound);
|
H A D | Payload.java | 80 * <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 D | PayloadFilesManagerTest.java | 68 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 D | PayloadImplTest.java | 332 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 D | DeployerImpl.java | 266 final PayloadImpl.Inbound inboundPayload = PayloadImpl.Inbound.newInstance(
|
/glassfish-3.1.2/cluster/cli/src/main/java/com/sun/enterprise/admin/cli/cluster/ |
H A D | ImportSyncBundleCommand.java | 270 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 D | RemoteAdminCommand.java | 524 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 D | CommandRunnerImpl.java | 1230 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 D | AdminAdapter.java | 438 Payload.Inbound inboundPayload = PayloadImpl.Inbound.newInstance(
|