Package bndtools.bndplugins.repo.git.GitOBRRepo

Examples of bndtools.bndplugins.repo.git.GitOBRRepo.Mapping


        this.repo = repo;
    }

    @Override
    public boolean get(URIish uri, CredentialItem... items) throws UnsupportedCredentialItem {
        Mapping mapping = repo.findMapping(uri.toString());
        if (mapping != null) {
            for (CredentialItem item : items) {
                if (item instanceof CredentialItem.Username) {
                    ((CredentialItem.Username) item).setValue(mapping.user);
                    continue;
View Full Code Here

TOP

Related Classes of bndtools.bndplugins.repo.git.GitOBRRepo.Mapping

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.