Class ProxyAdminClientUtils
- java.lang.Object
-
- org.wso2.carbon.proxyadmin.ui.client.ProxyAdminClientUtils
-
public class ProxyAdminClientUtils extends Object
-
-
Constructor Summary
Constructors Constructor Description ProxyAdminClientUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentBuilder
getSecuredDocumentBuilder(boolean setIgnoreComments)
This method provides a secured document builder which will secure XXE attacks.static String[]
sortNames(String[] names)
Sorts the given array alphabetically.
-
-
-
Method Detail
-
sortNames
public static String[] sortNames(String[] names)
Sorts the given array alphabetically. This method does not sort in-place. Therefore the original array is always unaffected. Returned array is a sorted copy.- Parameters:
names
- An array of Strings- Returns:
- a sorted array
-
getSecuredDocumentBuilder
public static DocumentBuilder getSecuredDocumentBuilder(boolean setIgnoreComments) throws ParserConfigurationException
This method provides a secured document builder which will secure XXE attacks.- Parameters:
setIgnoreComments
- whether to set setIgnoringComments in DocumentBuilderFactory.- Returns:
- DocumentBuilder
- Throws:
ParserConfigurationException
-
-