Examples of XSBase64Binary


Examples of org.exolab.castor.builder.types.XSBase64Binary

            case SimpleTypesFactory.NMTOKENS_TYPE:       //-- NMTOKENS
                return new XSNMTokens(SourceGeneratorConstants.FIELD_INFO_VECTOR, useJava50);
            case SimpleTypesFactory.ANYURI_TYPE:         //--AnyURI
                return new XSAnyURI();
            case SimpleTypesFactory.BASE64BINARY_TYPE:   //-- base64Bbinary
                return new XSBase64Binary(useJava50);
            case SimpleTypesFactory.HEXBINARY_TYPE:      //-- hexBinary
                return new XSHexBinary(useJava50);
            case SimpleTypesFactory.BOOLEAN_TYPE:        //-- boolean
                return new XSBoolean(useWrapper);
            case SimpleTypesFactory.BYTE_TYPE:           //--byte
View Full Code Here

Examples of org.opensaml.xml.schema.XSBase64Binary

            // TODO remove this else if condition after WSO2 IS supports claim
            // types properly
            if (claim.getUri().equals(IdentityConstants.CLAIM_PPID)) {
                XSBase64BinaryBuilder ppidValueBuilder = (XSBase64BinaryBuilder) builderFactory
                        .getBuilder(XSBase64Binary.TYPE_NAME);
                XSBase64Binary ppidValue = ppidValueBuilder.buildObject(
                        AttributeValue.DEFAULT_ELEMENT_NAME, XSBase64Binary.TYPE_NAME);
                ppidValue.setValue(claim.getValue());
                attribute.getAttributeValues().add(ppidValue);
            } else {
                XSStringBuilder attributeValueBuilder = (XSStringBuilder) builderFactory
                        .getBuilder(XSString.TYPE_NAME);
View Full Code Here

Examples of org.opensaml.xml.schema.XSBase64Binary

        // no attributes
    }

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        XSBase64Binary xsBase64Binary = (XSBase64Binary) xmlObject;

        XMLHelper.appendTextContent(domElement, xsBase64Binary.getValue());
    }
View Full Code Here

Examples of org.opensaml.xml.schema.XSBase64Binary

        // no attributes
    }

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        XSBase64Binary xsBase64Binary = (XSBase64Binary) xmlObject;

        if (elementContent != null) {
            xsBase64Binary.setValue(elementContent.trim());
        }
    }
View Full Code Here

Examples of org.opensaml.xml.schema.XSBase64Binary

        // no attributes
    }

    /** {@inheritDoc} */
    protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
        XSBase64Binary xsBase64Binary = (XSBase64Binary) xmlObject;

        XMLHelper.appendTextContent(domElement, xsBase64Binary.getValue());
    }
View Full Code Here

Examples of org.opensaml.xml.schema.XSBase64Binary

        // no attributes
    }

    /** {@inheritDoc} */
    protected void processElementContent(XMLObject xmlObject, String elementContent) {
        XSBase64Binary xsBase64Binary = (XSBase64Binary) xmlObject;

        if (elementContent != null) {
            xsBase64Binary.setValue(elementContent.trim());
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.