Uses of Interface
org.glassfish.api.admin.Payload.Inbound
-
Packages that use Payload.Inbound Package Description com.sun.enterprise.admin.remote org.glassfish.admin.payload org.glassfish.api.admin Admin commands in GlassFish -
-
Uses of Payload.Inbound in com.sun.enterprise.admin.remote
Classes in com.sun.enterprise.admin.remote that implement Payload.Inbound Modifier and Type Class Description static classRestPayloadImpl.Inbound -
Uses of Payload.Inbound in org.glassfish.admin.payload
Classes in org.glassfish.admin.payload that implement Payload.Inbound 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 classPayloadImpl.InboundPartial implementation of the Inbound interface.static classTextPayloadImpl.InboundMethods in org.glassfish.admin.payload with parameters of type Payload.Inbound Modifier and Type Method Description List<File>PayloadFilesManager. processParts(Payload.Inbound inboundPayload)Returns all Files extracted from the Payload, treating each Part as a separate file.Map<File,Properties>PayloadFilesManager. processPartsExtended(Payload.Inbound inboundPayload)Returns all Files extracted from the Payload, treating each Part as a separate file, via a Map from each File to its associated Properties. -
Uses of Payload.Inbound in org.glassfish.api.admin
Methods in org.glassfish.api.admin that return Payload.Inbound Modifier and Type Method Description Payload.InboundAdminCommandContext. getInboundPayload()Returns the inbound payload, from the admin client, that accompanied the command request.Payload.InboundAdminCommandContextForInstance. getInboundPayload()Payload.InboundAdminCommandContextImpl. getInboundPayload()Methods in org.glassfish.api.admin with parameters of type Payload.Inbound Modifier and Type Method Description CommandRunner.CommandInvocationCommandRunner.CommandInvocation. inbound(Payload.Inbound inbound)Sets the data carried with the request (could be an attachment)voidAdminCommandContext. setInboundPayload(Payload.Inbound newInboundPayload)Changes the inbound payload for this action.voidAdminCommandContextForInstance. setInboundPayload(Payload.Inbound newInboundPayload)voidAdminCommandContextImpl. setInboundPayload(Payload.Inbound newInboundPayload)Constructors in org.glassfish.api.admin with parameters of type Payload.Inbound Constructor Description AdminCommandContextImpl(Logger logger, ActionReport report, Payload.Inbound inboundPayload, Payload.Outbound outboundPayload, AdminCommandEventBroker eventBroker, String jobId)
-