Cloud Foundry Java Client Library

A Cloud Foundry client library for Java

License

License

Categories

Categories

CLI User Interface
GroupId

GroupId

org.cloudfoundry
ArtifactId

ArtifactId

cloudfoundry-client-lib
Last Version

Last Version

1.1.3
Release Date

Release Date

Type

Type

jar
Description

Description

Cloud Foundry Java Client Library
A Cloud Foundry client library for Java
Project URL

Project URL

http://github.com/cloudfoundry/cf-java-client
Source Code Management

Source Code Management

http://github.com/cloudfoundry/cf-java-client

Download cloudfoundry-client-lib

How to add to project

<!-- https://jarcasting.com/artifacts/org.cloudfoundry/cloudfoundry-client-lib/ -->
<dependency>
    <groupId>org.cloudfoundry</groupId>
    <artifactId>cloudfoundry-client-lib</artifactId>
    <version>1.1.3</version>
</dependency>
// https://jarcasting.com/artifacts/org.cloudfoundry/cloudfoundry-client-lib/
implementation 'org.cloudfoundry:cloudfoundry-client-lib:1.1.3'
// https://jarcasting.com/artifacts/org.cloudfoundry/cloudfoundry-client-lib/
implementation ("org.cloudfoundry:cloudfoundry-client-lib:1.1.3")
'org.cloudfoundry:cloudfoundry-client-lib:jar:1.1.3'
<dependency org="org.cloudfoundry" name="cloudfoundry-client-lib" rev="1.1.3">
  <artifact name="cloudfoundry-client-lib" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.cloudfoundry', module='cloudfoundry-client-lib', version='1.1.3')
)
libraryDependencies += "org.cloudfoundry" % "cloudfoundry-client-lib" % "1.1.3"
[org.cloudfoundry/cloudfoundry-client-lib "1.1.3"]

Dependencies

compile (10)

Group / Artifact Type Version
org.springframework : spring-webmvc jar 4.0.5.RELEASE
org.springframework.security.oauth : spring-security-oauth2 jar 2.0.4.RELEASE
org.apache.httpcomponents : httpclient jar 4.3.6
commons-io : commons-io jar 2.1
com.esotericsoftware.yamlbeans : yamlbeans jar 1.06
com.fasterxml.jackson.core : jackson-core jar 2.3.3
com.fasterxml.jackson.core : jackson-databind jar 2.3.3
org.apache.tomcat.embed : tomcat-embed-websocket jar 8.0.15
org.apache.tomcat : tomcat-juli jar 8.0.15
com.google.protobuf : protobuf-java jar 2.6.1

test (9)

Group / Artifact Type Version
junit : junit jar 4.10
org.hamcrest : hamcrest-all jar 1.1
org.mockito : mockito-core jar 1.9.5
org.springframework : spring-test jar 4.0.5.RELEASE
org.eclipse.jetty : jetty-server jar 8.1.12.v20130726
org.eclipse.jetty : jetty-servlet jar 8.1.12.v20130726
org.eclipse.jetty : jetty-servlets jar 8.1.12.v20130726
log4j : log4j jar 1.2.14
org.jboss.byteman : byteman-bmunit jar 2.1.3

Project Modules

There are no modules declared in this project.

Cloud Foundry Java Client

Maven Central

Artifact Javadocs
cloudfoundry-client javadoc
cloudfoundry-client-reactor javadoc
cloudfoundry-operations javadoc
cloudfoundry-util javadoc
Job Status
unit-test java 8 unit-test-8-main
unit-test java 11 unit-test-11-main
integration-test-2.7 integration-test-2.7-main
integration-test-2.8 integration-test-2.8-main
integration-test-2.9 integration-test-2.9-main
integration-test-2.10 integration-test-2.10-main
deploy deploy-main

The cf-java-client project is a Java language binding for interacting with a Cloud Foundry instance. The project is broken up into a number of components that expose different levels of abstraction depending on need.

  • cloudfoundry-client – Interfaces, request, and response objects mapping to the Cloud Foundry REST APIs. This project has no implementation and therefore cannot connect to a Cloud Foundry instance on its own.
  • cloudfoundry-client-reactor – The default implementation of the cloudfoundry-client project. This implementation is based on Reactor Netty HttpClient.
  • cloudfoundry-operations – An API and implementation that corresponds to the Cloud Foundry CLI operations. This project builds on the cloudfoundry-client and therefore has a single implementation.

Versions

The Cloud Foundry Java Client has two active versions. The 4.x line uses Spring Boot 2.3.x just to manage its dependencies, while the 3.x line uses Spring Boot 2.1.x. Unless you have a specific dependency-related reason for using the older version we recommend you adopt the 4.x line.

Dependencies

Most projects will need two dependencies; the Operations API and an implementation of the Client API. For Maven, the dependencies would be defined like this:

<dependencies>
    <dependency>
        <groupId>org.cloudfoundry</groupId>
        <artifactId>cloudfoundry-client-reactor</artifactId>
        <version>4.10.0.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.cloudfoundry</groupId>
        <artifactId>cloudfoundry-operations</artifactId>
        <version>4.10.0.RELEASE</version>
    </dependency>
    ...
</dependencies>

Snapshot artifacts can be found in the Spring snapshot repository:

<repositories>
    <repository>
        <id>spring-snapshots</id>
        <name>Spring Snapshots</name>
        <url>https://repo.spring.io/snapshot</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
    ...
</repositories>

For Gradle, the dependencies would be defined like this:

dependencies {
    compile 'org.cloudfoundry:cloudfoundry-client-reactor:4.10.0.RELEASE'
    compile 'org.cloudfoundry:cloudfoundry-operations:4.10.0.RELEASE'
    ...
}

Snapshot artifacts can be found in the Spring snapshot repository:

repositories {
    maven { url 'https://repo.spring.io/snapshot' }
    ...
}

Usage

Both the cloudfoundry-operations and cloudfoundry-client projects follow a "Reactive" design pattern and expose their responses with Project Reactor Monoss and Fluxs.

CloudFoundryClient, DopplerClient, UaaClient Builders

The lowest-level building blocks of the API are ConnectionContext and TokenProvider. These types are intended to be shared between instances of the clients, and come with out of the box implementations. To instantiate them, you configure them with builders:

DefaultConnectionContext.builder()
    .apiHost(apiHost)
    .build();

PasswordGrantTokenProvider.builder()
    .password(password)
    .username(username)
    .build();

In Spring-based applications, you'll want to encapsulate them in bean definitions:

@Bean
DefaultConnectionContext connectionContext(@Value("${cf.apiHost}") String apiHost) {
    return DefaultConnectionContext.builder()
        .apiHost(apiHost)
        .build();
}

@Bean
PasswordGrantTokenProvider tokenProvider(@Value("${cf.username}") String username,
                                         @Value("${cf.password}") String password) {
    return PasswordGrantTokenProvider.builder()
        .password(password)
        .username(username)
        .build();
}

CloudFoundryClient, DopplerClient, and UaaClient are only interfaces. Each has a Reactor-based implementation. To instantiate them, you configure them with builders:

ReactorCloudFoundryClient.builder()
    .connectionContext(connectionContext)
    .tokenProvider(tokenProvider)
    .build();

ReactorDopplerClient.builder()
    .connectionContext(connectionContext)
    .tokenProvider(tokenProvider)
    .build();

ReactorUaaClient.builder()
    .connectionContext(connectionContext)
    .tokenProvider(tokenProvider)
    .build();

In Spring-based applications, you'll want to encapsulate them in bean definitions:

@Bean
ReactorCloudFoundryClient cloudFoundryClient(ConnectionContext connectionContext, TokenProvider tokenProvider) {
    return ReactorCloudFoundryClient.builder()
        .connectionContext(connectionContext)
        .tokenProvider(tokenProvider)
        .build();
}

@Bean
ReactorDopplerClient dopplerClient(ConnectionContext connectionContext, TokenProvider tokenProvider) {
    return ReactorDopplerClient.builder()
        .connectionContext(connectionContext)
        .tokenProvider(tokenProvider)
        .build();
}

@Bean
ReactorUaaClient uaaClient(ConnectionContext connectionContext, TokenProvider tokenProvider) {
    return ReactorUaaClient.builder()
        .connectionContext(connectionContext)
        .tokenProvider(tokenProvider)
        .build();
}

CloudFoundryOperations Builder

The CloudFoundryClient, DopplerClient, and UaaClients provide direct access to the raw REST APIs. This level of abstraction provides the most detailed and powerful access to the Cloud Foundry instance, but also requires users to perform quite a lot of orchestration on their own. Most users will instead want to work at the CloudFoundryOperations layer. Once again this is only an interface and the default implementation of this is the DefaultCloudFoundryOperations. To instantiate one, you configure it with a builder:

NOTE: The DefaultCloudfoundryOperations type does not require all clients in order to run. Since not all operations touch all kinds of clients, you can selectively configure the minimum needed. If a client is missing, the first invocation of a method that requires that client will return an error.

DefaultCloudFoundryOperations.builder()
    .cloudFoundryClient(cloudFoundryClient)
    .dopplerClient(dopplerClient)
    .uaaClient(uaaClient)
    .organization("example-organization")
    .space("example-space")
    .build();

In Spring-based applications, you'll want to encapsulate this in a bean definition as well:

@Bean
DefaultCloudFoundryOperations cloudFoundryOperations(CloudFoundryClient cloudFoundryClient,
                                                     DopplerClient dopplerClient,
                                                     UaaClient uaaClient,
                                                     @Value("${cf.organization}") String organization,
                                                     @Value("${cf.space}") String space) {
    return DefaultCloudFoundryOperations.builder()
            .cloudFoundryClient(cloudFoundryClient)
            .dopplerClient(dopplerClient)
            .uaaClient(uaaClient)
            .organization(organization)
            .space(space)
            .build();
}

CloudFoundryOperations APIs

Once you've got a reference to the CloudFoundryOperations, it's time to start making calls to the Cloud Foundry instance. One of the simplest possible operations is list all of the organizations the user is a member of. The following example does three things:

  1. Requests a list of all organizations
  2. Extracts the name of each organization
  3. Prints the name of each organization to System.out
cloudFoundryOperations.organizations()
    .list()
    .map(OrganizationSummary::getName)
    .subscribe(System.out::println);

To relate the example to the description above the following happens:

  1. .list() – Lists the Cloud Foundry organizations as a Flux of elements of type Organization.
  2. .map(...) – Maps each organization to its name (type String). This example uses a method reference; the equivalent lambda would look like organizationSummary -> organizationSummary.getName().
  3. subscribe... – The terminal operation that receives each name in the Flux. Again, this example uses a method reference and the equivalent lambda would look like name -> System.out.println(name).

CloudFoundryClient APIs

As mentioned earlier, the cloudfoundry-operations implementation builds upon the cloudfoundry-client API. That implementation takes advantage of the same reactive style in the lower-level API. The implementation of the Organizations.list() method (which was demonstrated above) looks like the following (roughly):

cloudFoundryClient.organizations()
    .list(ListOrganizationsRequest.builder()
        .page(1)
        .build())
    .flatMapIterable(ListOrganizationsResponse::getResources)
    .map(resource -> OrganizationSummary.builder()
        .id(resource.getMetadata().getId())
        .name(resource.getEntity().getName())
        .build());

The above example is more complicated:

  1. .list(...) – Retrieves the first page of Cloud Foundry organizations.
  2. .flatMapIterable(...) – Substitutes the original Mono with a Flux of the Resources returned by the requested page.
  3. .map(...) – Maps the Resource to an OrganizationSummary type.

Development

The project depends on Java 8. To build from source and install to your local Maven cache, run the following:

$ git submodule update --init --recursive
$ ./mvnw clean install

It also depends on Immutables and won't compile in IDEs like Eclipse or IntelliJ unless you also have an enabled annotation processor. See this guide for instructions on how to configure your IDE.

To run the integration tests, run the following:

$ ./mvnw -Pintegration-test clean test

IMPORTANT Integration tests should be run against an empty Cloud Foundry instance. The integration tests are destructive, affecting nearly everything on an instance given the chance.

The integration tests require a running instance of Cloud Foundry to test against. To configure the integration tests with the appropriate connection information use the following environment variables:

Name Description
TEST_ADMIN_CLIENTID Client ID for a client with permissions for a Client Credentials grant
TEST_ADMIN_CLIENTSECRET Client secret for a client with permissions for a Client Credentials grant
TEST_ADMIN_PASSWORD Password for a user with admin permissions
TEST_ADMIN_USERNAME Username for a user with admin permissions
TEST_APIHOST The host of a Cloud Foundry instance. Typically something like api.local.pcfdev.io.
TEST_PROXY_HOST (Optional) The host of a proxy to route all requests through
TEST_PROXY_PASSWORD (Optional) The password for a proxy to route all requests through
TEST_PROXY_PORT (Optional) The port of a proxy to route all requests through. Defaults to 8080.
TEST_PROXY_USERNAME (Optional) The username for a proxy to route all requests through
TEST_SKIPSSLVALIDATION (Optional) Whether to skip SSL validation when connecting to the Cloud Foundry instance. Defaults to false.

Contributing

Pull requests and Issues are welcome.

License

This project is released under version 2.0 of the Apache License.

org.cloudfoundry

Cloud Foundry

Cloud Foundry Foundation active projects

Versions

Version
1.1.3
1.1.2
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0