Uses of Class
org.glassfish.admin.payload.PayloadImpl.Inbound
-
Packages that use PayloadImpl.Inbound Package Description com.sun.enterprise.admin.remote org.glassfish.admin.payload -
-
Uses of PayloadImpl.Inbound in com.sun.enterprise.admin.remote
Subclasses of PayloadImpl.Inbound in com.sun.enterprise.admin.remote Modifier and Type Class Description static classRestPayloadImpl.Inbound -
Uses of PayloadImpl.Inbound in org.glassfish.admin.payload
Subclasses of PayloadImpl.Inbound in org.glassfish.admin.payload Modifier and Type Class Description classInputStreamInboundPayloadImplementation of a Payload.Inbound that works with InputStreams Usage is like this: CommandRunner.CommandInvocation ci = commandRunner.getCommandInvocation("some-command", areport, theSubject); InputStreamPayload in = new InputStreamInboundPayload(); // get an InputStream is from somewhere in.addStream("someoption", is) // get another InputStream for the operand in.addStream("DEFAULT", is) ParameterMap map = new ParameterMap(); // populate map with other options ci.inbound(in).parameters(map).execute();static classTextPayloadImpl.InboundMethods in org.glassfish.admin.payload that return PayloadImpl.Inbound Modifier and Type Method Description static PayloadImpl.InboundPayloadImpl.Inbound. newInstance(String payloadContentType, InputStream is)Creates a new Inbound Payload of the given content type, read from the specified InputStream.
-