Uses of Class
com.opencloud.sentinel.util.MessageBody
-
Packages that use MessageBody Package Description com.opencloud.sentinel.multileg This package contains the interfaces required for leg management operations in the Sentinel SIP service.com.opencloud.sentinel.util -
-
Uses of MessageBody in com.opencloud.sentinel.multileg
Methods in com.opencloud.sentinel.multileg with parameters of type MessageBody Modifier and Type Method Description boolean
Leg. endSubscription(SubscribedEventID eventID, MessageBody messageBody)
Queue an instruction to end a given subscription.boolean
Leg. endSubscription(SubscribedEventID eventID, java.lang.String reason, MessageBody messageBody)
Queue an instruction to end a given subscription. -
Uses of MessageBody in com.opencloud.sentinel.util
Methods in com.opencloud.sentinel.util that return MessageBody Modifier and Type Method Description MessageBody
MultipartMessageBody. getPart(java.lang.String contentType)
Returns the first part in the multipart message body that has the given content type.static MessageBody
SIPUtil. getSDPMessageBody(org.jainslee.resources.sip.SipMessage message, javax.slee.facilities.Tracer tracer)
Gets the first SDP body in a message; if the message has Content-Type "application/sdp", or a multipart body with an "application/sdp" part.Methods in com.opencloud.sentinel.util that return types with arguments of type MessageBody Modifier and Type Method Description static java.util.List<MessageBody>
SIPUtil. getMessageContent(org.jainslee.resources.sip.SipMessage message, javax.mail.internet.ContentType contentType, javax.slee.facilities.Tracer tracer)
Retrieves message content from a SIP message as a MessageBody.java.util.List<MessageBody>
MultipartMessageBody. getPartsList()
Gives access to the list of message body parts contained in this MultipartMessageBody.java.util.Iterator<MessageBody>
MultipartMessageBody. iterator()
Methods in com.opencloud.sentinel.util with parameters of type MessageBody Modifier and Type Method Description static void
SIPUtil. addMessageContent(org.jainslee.resources.sip.SipMessage message, MessageBody messageBody, boolean replace, javax.slee.facilities.Tracer tracer)
Sets content in the body of a SIP message.Constructor parameters in com.opencloud.sentinel.util with type arguments of type MessageBody Constructor Description MultipartMessageBody(java.util.List<MessageBody> parts)
Creates a new multipart message body with the given parts and a default content boundary String: "multipart-content-boundary".MultipartMessageBody(java.util.List<MessageBody> parts, java.lang.String boundary)
Creates a new multipart message body with the given parts and content boundary String.
-