[jingle] Add element and text to JingleReason's XML

This commit is contained in:
cmeng-git 2022-02-13 15:58:37 +08:00 committed by Florian Schmaus
parent 3885153ea1
commit 4d026d8ae8
1 changed files with 4 additions and 1 deletions

View File

@ -35,6 +35,7 @@ public class JingleReason implements FullyQualifiedElement {
public static final String ELEMENT = "reason"; public static final String ELEMENT = "reason";
public static final String NAMESPACE = Jingle.NAMESPACE; public static final String NAMESPACE = Jingle.NAMESPACE;
public static final String TEXT_ELEMENT = "text";
public static AlternativeSession AlternativeSession(String sessionId) { public static AlternativeSession AlternativeSession(String sessionId) {
return new AlternativeSession(sessionId); return new AlternativeSession(sessionId);
@ -142,7 +143,7 @@ public class JingleReason implements FullyQualifiedElement {
/** /**
* An optional element that provides more detailed machine-readable information about the reason for the action. * An optional element that provides more detailed machine-readable information about the reason for the action.
* *
* @return an elemnet with machine-readable information about this reason or <code>null</code>. * @return an element with machine-readable information about this reason or <code>null</code>.
* @since 4.4.5 * @since 4.4.5
*/ */
public ExtensionElement getElement() { public ExtensionElement getElement() {
@ -155,6 +156,8 @@ public class JingleReason implements FullyQualifiedElement {
xml.rightAngleBracket(); xml.rightAngleBracket();
xml.emptyElement(reason); xml.emptyElement(reason);
xml.optElement(TEXT_ELEMENT, text);
xml.optAppend(element);
xml.closeElement(this); xml.closeElement(this);
return xml; return xml;