Java SDK for CloudEvents
Go to file
Fabio José 6b32537972 Adding alias to work with 'contenttype' and 'contentType' on deserialization
Signed-off-by: Fabio José <fabiojose@gmail.com>
2019-08-13 17:52:06 -03:00
api Adding alias to work with 'contenttype' and 'contentType' on deserialization 2019-08-13 17:52:06 -03:00
cdi [maven-release-plugin] prepare for next development iteration 2018-12-18 14:09:28 +01:00
http/vertx [maven-release-plugin] prepare for next development iteration 2018-12-18 14:09:28 +01:00
.gitignore ☁️ CloudEvent Java API 2018-10-06 09:13:59 +02:00
.travis.yml adding jdk 8 CI builds 2018-11-22 12:51:06 +01:00
LICENSE Initial commit 2018-09-20 15:56:37 -04:00
README.md Update to 0.2.1 2019-03-20 14:01:31 +01:00
pom.xml [maven-release-plugin] prepare for next development iteration 2018-12-18 14:09:28 +01:00

README.md

Java SDK for CloudEvents API

Build Status License Maven Central Javadocs

A Java API for the CloudEvents specification

Motivation

The CloudEvents specification is a vendor-neutral specification for defining the format of event data that is being exchanged between different cloud systems. The specification basically defines an abstract envelope for any event data payload, without knowing specific implementation details of the actual underlying event. The current version of the spec is at 0.2 and it describes a simple event format, which was demonstrated at KubeCon 2018 using different Serverless platforms, such as Apache Openwhisk.

Java API

For Maven based projects, use the following to configure the CloudEvents Java SDK:

<dependency>
    <groupId>io.cloudevents</groupId>
    <artifactId>cloudevents-api</artifactId>
    <version>0.2.1</version>
</dependency>

Application developers can now create strongly-typed CloudEvents, such as:

// given
final String eventId = UUID.randomUUID().toString();
final URI src = URI.create("/trigger");
final String eventType = "My.Cloud.Event.Type";
final MyCustomEvent payload = ...

// passing in the given attributes
final CloudEvent<MyCustomEvent> cloudEvent = new CloudEventBuilder<MyCustomEvent>()
    .type(eventType)
    .id(eventId)
    .source(src)
    .data(payload)
    .build();

Possible Integrations

The API is kept simple, for allowing a wide range of possible integrations: