Skip to content

Latest commit

 

History

History

events_mgmt

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

aio-lib-java-events-mgmt

aio-lib-java-events-mgmt is Adobe I/O - Java SDK - Events Management Library. This Java library wraps http API endpoints exposed by Adobe I/O Events Provider and Registration APIs

ProviderService Test Drive

 ProviderService providerService = ProviderService.builder()
      .workspace(workspace) // [1]
      .build(); 
  Optional<Provider> provider = providerService.findById("someProviderId"); //[2]   
  • [1] build your ProviderService by passing your workspace context (cf. the aio-lib-java-core for workspace documentation)
  • [2] have this service retrieve one of your event provider by passing a provider id.

See our main() Test Drive

RegistrationService Test Drive

  RegistrationService registrationService = RegistrationService.builder()
      .workspace(workspace) // [1]
      .build(); //
  Optional<Registration> registration =
      registrationService.findById("someRegistrationId"); // [2]
  • [1] build your RegistrationService by passing your workspace context (cf. the aio-lib-java-core for workspace documentation)
  • [2] have this service retrieve one of your registration by passing a registration id.

See our main() Test Drive

Builds

This Library is build with maven (it also runs the unit tests):

Contributing

Contributions are welcomed! Read the Contributing Guide for more information.

Licensing

This project is licensed under the Apache V2 License. See LICENSE for more information.