Tabnine Logo
com.woorea.openstack.keystone.model
Code IndexAdd Tabnine to your IDE (free)

How to use com.woorea.openstack.keystone.model

Best Java code snippets using com.woorea.openstack.keystone.model (Showing top 20 results out of 315)

origin: woorea/openstack-java-sdk

  @Override
  public String[] getRow(Service service) {
    return new String[]{
      service.getId(),
      service.getType(),
      service.getName(),
      service.getDescription()
    };
  }
});
origin: woorea/openstack-java-sdk

  @Override
  public String[] getRow(Role role) {
    return new String[]{
        role.getId(),
        role.getName(),
        role.getDescription(),
        role.getEnabled()
    };
  }
});
origin: com.woorea/keystone-client

public Authenticate withTenantName(String tenantName) {
  authentication.setTenantName(tenantName);
  return this;
}

origin: com.woorea/keystone-client

@Override
public String getToken() {
  return keystoneTokenProvider.getAccessByTenant(tenantName)
      .getToken().getId();
}
@Override
origin: woorea/openstack-java-sdk

  @Override
  public String[] getRow(Tenant tenant) {
    return new String[]{
      tenant.getId(),
      tenant.getName(),
      tenant.getDescription(),
      tenant.getEnabled().toString()
    };
  }
});
origin: woorea/openstack-java-sdk

  @Override
  public String[] getRow(User user) {
    return new String[]{
      user.getId(),
      user.getName(),
      user.getEmail(),
      user.getTenantId(),
      user.getEnabled().toString()
    };
  }
});
origin: com.woorea/keystone-client

public Authenticate withTenantId(String tenantId) {
  authentication.setTenantId(tenantId);
  return this;
}

origin: com.att.woorea/keystone-client

/**
 * @see com.woorea.openstack.base.client.OpenStackTokenProvider#getToken()
 */
@Override
public String getToken() throws OpenStackConnectException, OpenStackResponseException {
  return keystoneTokenProvider.getAccessByTenant(tenantName).getToken().getId();
}
origin: woorea/openstack-java-sdk

  @Override
  public String[] getRow(Tenant tenant) {
    return new String[]{
      tenant.getId(),
      tenant.getName(),
      tenant.getDescription(),
      tenant.getEnabled().toString()
    };
  }
});
origin: woorea/openstack-java-sdk

  @Override
  public String[] getRow(User user) {
    return new String[]{
      user.getId(),
      user.getName(),
      user.getEmail(),
      user.getTenantId(),
      user.getEnabled().toString()
    };
  }
});
origin: woorea/openstack-java-sdk

  @Override
  public String[] getRow(Role tenant) {
    return new String[]{
      tenant.getId(),
      tenant.getName(),
      tenant.getDescription(),
      tenant.getEnabled().toString()
    };
  }
});
origin: com.att.woorea/keystone-client

public Authenticate withTenantName(String tenantName) {
  authentication.setTenantName(tenantName);
  return this;
}

origin: com.att.woorea/keystone-client

public Authenticate withTenantId(String tenantId) {
  authentication.setTenantId(tenantId);
  return this;
}

origin: woorea/openstack-java-sdk

@Override
public String getToken() {
  return keystoneTokenProvider.getAccessByTenant(tenantName)
      .getToken().getId();
}
@Override
origin: woorea/openstack-java-sdk

public Authenticate withTenantName(String tenantName) {
  authentication.setTenantName(tenantName);
  return this;
}

origin: woorea/openstack-java-sdk

public Authenticate withTenantId(String tenantId) {
  authentication.setTenantId(tenantId);
  return this;
}

origin: com.att.cdp/cdp-pal-openstack

  /**
   * Updates the expired token by re-authenticating, getting a new unexpired token (in the access object), and then
   * updating the token held by this client wrapped by this connector to use the new token.
   * 
   * @see com.att.cdp.openstack.connectors.Connector#updateToken()
   */
  @Override
  public void updateToken() {
    super.updateToken();
    keystone.token(getAccess().getToken().getId());
    
  }
}
origin: com.att.cdp/cdp-pal-openstack

/**
 * Updates the expired token by re-authenticating, getting a new unexpired token (in the access object), and then
 * updating the token held by this client wrapped by this connector to use the new token.
 * 
 * @see com.att.cdp.openstack.connectors.Connector#updateToken()
 */
@Override
public void updateToken() {
  super.updateToken();
  heat.token(getAccess().getToken().getId());
}
origin: com.att.cdp/cdp-pal-openstack

  /**
   * Updates the expired token by re-authenticating, getting a new unexpired token (in the access object), and then
   * updating the token held by this client wrapped by this connector to use the new token.
   * 
   * @see com.att.cdp.openstack.connectors.Connector#updateToken()
   */
  @Override
  public void updateToken() {
    super.updateToken();
    quantum.token(getAccess().getToken().getId());
    
  }
}
origin: com.att.cdp/cdp-pal-openstack

  /**
   * Updates the expired token by re-authenticating, getting a new unexpired token (in the access object), and then
   * updating the token held by this client wrapped by this connector to use the new token.
   * 
   * @see com.att.cdp.openstack.connectors.Connector#updateToken()
   */
  @Override
  public void updateToken() {
    super.updateToken();
    glance.token(getAccess().getToken().getId());
    
  }
}
com.woorea.openstack.keystone.model

Most used classes

  • Access
  • Token
  • UsernamePassword
  • Access$Service$Endpoint
  • Access$Service
  • Tenants,
  • AccessKey$ApiAccessKeyCredentials,
  • TokenAuthentication,
  • UsernamePassword$PasswordCredentials,
  • Authentication,
  • Role,
  • Roles,
  • User,
  • AccessKey,
  • Service,
  • Services,
  • Users
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now