Commit 7703765b authored by Gabriel Guardincerri's avatar Gabriel Guardincerri Committed by gguardin

Created VCardProvider to integrate with Clearspace. JM-1227

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/openfire_3_5_0@9995 b35dd754-fafc-0310-a699-88a17e54d16e
parent d5d209a7
...@@ -31,6 +31,7 @@ public class WSUtils { ...@@ -31,6 +31,7 @@ public class WSUtils {
/** /**
* Returns the text of the first an element with name 'return'. * Returns the text of the first an element with name 'return'.
*
* @param element the element to search for a return element. * @param element the element to search for a return element.
* @return the text of the return element. * @return the text of the return element.
*/ */
...@@ -40,6 +41,7 @@ public class WSUtils { ...@@ -40,6 +41,7 @@ public class WSUtils {
/** /**
* Returns the text of the first an element with name 'name'. * Returns the text of the first an element with name 'name'.
*
* @param node the element to search for a "name" element. * @param node the element to search for a "name" element.
* @param name the name of the element to search * @param name the name of the element to search
* @return the text of the corresponding element * @return the text of the corresponding element
...@@ -54,6 +56,7 @@ public class WSUtils { ...@@ -54,6 +56,7 @@ public class WSUtils {
/** /**
* Modifies the text of the elmement with name 'name'. * Modifies the text of the elmement with name 'name'.
*
* @param node the element to search * @param node the element to search
* @param name the name to search * @param name the name to search
* @param newValue the new value of the text * @param newValue the new value of the text
...@@ -63,14 +66,24 @@ public class WSUtils { ...@@ -63,14 +66,24 @@ public class WSUtils {
n.setText(newValue); n.setText(newValue);
} }
protected static void modifyElementText(Element element, String[] path, String newValue) {
Element e = element;
for (String s : path) {
e = e.element(s);
}
e.setText(newValue);
}
/** /**
* Parse REST responses of the type String[], that are XML of the form: * Parse REST responses of the type String[], that are XML of the form:
* * <p/>
* <something> * <something>
* <return>text1</return> * <return>text1</return>
* <return>text2</return> * <return>text2</return>
* <return>text3</return> * <return>text3</return>
* </something> * </something>
*
* @param element * @param element
* @return * @return
*/ */
...@@ -90,12 +103,13 @@ public class WSUtils { ...@@ -90,12 +103,13 @@ public class WSUtils {
result += s + ","; result += s + ",";
} }
return result.substring(0, result.length() -1); return result.substring(0, result.length() - 1);
} }
/** /**
* Parses a date of the form 1969-12-31T21:00:00-03:00, or 2008-02-13T18:54:29.147-03:00. * Parses a date of the form 1969-12-31T21:00:00-03:00, or 2008-02-13T18:54:29.147-03:00.
* If the string is null or there is a problem parsing the date, returns null. * If the string is null or there is a problem parsing the date, returns null.
*
* @param date the string to parse * @param date the string to parse
* @return the corresponding date, or null if t * @return the corresponding date, or null if t
*/ */
...@@ -106,13 +120,12 @@ public class WSUtils { ...@@ -106,13 +120,12 @@ public class WSUtils {
// REST writes dates time zone with ':', somthing like -3:00 // REST writes dates time zone with ':', somthing like -3:00
// to parse it they should be removed // to parse it they should be removed
int index = date.lastIndexOf(":"); int index = date.lastIndexOf(":");
date = date.substring(0, index) + date.substring(index +1); date = date.substring(0, index) + date.substring(index + 1);
Date d = null; Date d = null;
try { try {
if (date.length() == 24) { if (date.length() == 24) {
d = dateFormatNoMil.parse(date); d = dateFormatNoMil.parse(date);
} } else {
else {
d = dateFormatMil.parse(date); d = dateFormatMil.parse(date);
} }
} catch (ParseException e) { } catch (ParseException e) {
...@@ -123,6 +136,7 @@ public class WSUtils { ...@@ -123,6 +136,7 @@ public class WSUtils {
/** /**
* Formats a date into yyyy-MM-dd'T'HH:mm:ss.SSSZ, for example 2008-02-13T18:54:29.147-03:00 * Formats a date into yyyy-MM-dd'T'HH:mm:ss.SSSZ, for example 2008-02-13T18:54:29.147-03:00
*
* @param date the date to format * @param date the date to format
* @return a string representation of the date * @return a string representation of the date
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment