Package org.openid4java.discovery

Examples of org.openid4java.discovery.XriIdentifier


    public XriIdentifier parseIdentifier(String identifier) throws DiscoveryException
    {
        // todo: http://code.google.com/p/openid4java/issues/detail?id=63
        _log.warn("Creating XRI identifier with the friendly XRI identifier as the IRI/URI normal forms.");
        return new XriIdentifier(identifier, identifier, identifier);
    }
View Full Code Here


    public XriIdentifier parseIdentifier(String identifier) throws DiscoveryException
    {
        // todo: http://code.google.com/p/openid4java/issues/detail?id=63
        _log.warn("Creating XRI identifier with the friendly XRI identifier as the IRI/URI normal forms.");
        return new XriIdentifier(identifier, identifier, identifier);
    }
View Full Code Here

    }

    public XriIdentifier parseIdentifier(String identifier) throws DiscoveryException {

        XRI xri = new XRI(identifier);
        return new XriIdentifier(identifier, xri.toIRINormalForm(), xri.toURINormalForm());
    }
View Full Code Here

TOP

Related Classes of org.openid4java.discovery.XriIdentifier

Copyright © 2018 www.massapicom. 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.