Package com.sun.xml.ws.server.sei
Class MessageFiller
- java.lang.Object
-
- com.sun.xml.ws.server.sei.MessageFiller
-
- Direct Known Subclasses:
MessageFiller.AttachmentFiller,MessageFiller.Header
public abstract class MessageFiller extends Object
Puts a non-payload message parameter toMessage.Instance of this class is used to handle header parameters and attachment parameters. They add things to
Message.- Author:
- Kohsuke Kawaguchi, Jitendra Kotamraju
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMessageFiller.AttachmentFillerAdds a parameter as an MIME attachment toMessage.static classMessageFiller.HeaderAdds a parameter as an header.
-
Field Summary
Fields Modifier and Type Field Description protected intmethodPosThe index of the method invocation parameters that this object looks for.
-
Constructor Summary
Constructors Modifier Constructor Description protectedMessageFiller(int methodPos)
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidfillIn(Object[] methodArgs, Object returnValue, Message msg)Moves an argument of a method invocation into aMessage.
-