blob: ef13b5bcb61a2d2d038647cf372cc9703be2fec4 [file] [log] [blame]
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.ims.rcs.uce.presence.pidfparser.pidf;
import android.text.TextUtils;
import com.android.ims.rcs.uce.presence.pidfparser.ElementBase;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserException;
import org.xmlpull.v1.XmlSerializer;
import java.io.IOException;
/**
* The "note" element of the pidf. This element is usually used for a human readable comment.
* It may appear as a child element of "presence" or as a child element of the "tuple" element.
*/
public class Note extends ElementBase {
/** The name of this element */
public static final String ELEMENT_NAME = "note";
private String mNote;
public Note() {
}
public Note(String note) {
mNote = note;
}
@Override
protected String initNamespace() {
return PidfConstant.NAMESPACE;
}
@Override
protected String initElementName() {
return ELEMENT_NAME;
}
public String getNote() {
return mNote;
}
@Override
public void serialize(XmlSerializer serializer) throws IOException {
if (mNote == null) {
return;
}
final String namespace = getNamespace();
final String element = getElementName();
serializer.startTag(namespace, element);
serializer.text(mNote);
serializer.endTag(namespace, element);
}
@Override
public void parse(XmlPullParser parser) throws IOException, XmlPullParserException {
String namespace = parser.getNamespace();
String name = parser.getName();
if (!verifyParsingElement(namespace, name)) {
throw new XmlPullParserException("Incorrect element: " + namespace + ", " + name);
}
// Move to the next event to get the value.
int eventType = parser.next();
// Get the value if the event type is text.
if (eventType == XmlPullParser.TEXT) {
String note = parser.getText();
if (!TextUtils.isEmpty(note)) {
mNote = note;
}
}
// Move to the end tag.
moveToElementEndTag(parser, eventType);
}
}