Java Code Examples for org.opensaml.core.xml.schema.XSString#getValue()
The following examples show how to use
org.opensaml.core.xml.schema.XSString#getValue() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TokenMgtUtil.java From carbon-apimgt with Apache License 2.0 | 4 votes |
private static String getStringAttributeValue(XSString attributeValue) { return attributeValue.getValue(); }
Example 2
Source File: APIKeyMgtUtil.java From carbon-apimgt with Apache License 2.0 | 4 votes |
private static String getStringAttributeValue(XSString attributeValue) { return attributeValue.getValue(); }
Example 3
Source File: SAMLGroupIDExtractorImpl.java From carbon-apimgt with Apache License 2.0 | 2 votes |
/** * Get the String value from XSString object * * @param attributeValue XSString Object instance of attribute value received in SAML Assertion * @return attribute value as a String */ private String getStringAttributeValue(XSString attributeValue) { return attributeValue.getValue(); }