Package io.fathom.cloud.openstack.client.identity.model

Examples of io.fathom.cloud.openstack.client.identity.model.V2Project


    public Identity(OpenstackIdentityClient identityClient) {
        this.identityClient = identityClient;
    }

    public String ensureProjectWithPrefix(String prefix) throws RestClientException {
        V2Project found = null;
        V2ProjectList projects = identityClient.listProjects();
        for (V2Project project : projects.tenants) {
            if (project.name == null) {
                continue;
            }
View Full Code Here

TOP

Related Classes of io.fathom.cloud.openstack.client.identity.model.V2Project

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.