com.tenduke.events.api.model.EventApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of events-api Show documentation
Show all versions of events-api Show documentation
Objects and interfaces describing data communicated in the 10Duke Event Data system API
package com.tenduke.events.api.model;
/**
* Metadata of the 10Duke Event Data model described by this artifact.
* @author jarkko
*/
public final class EventApi {
/**
* Prevents an instance of the {@link EventApi} class from being created.
*/
private EventApi() {
//
}
/**
* Gets version of the API.
* @return The API version.
*/
public static final String getApiVersion() {
return EventApi.class.getPackage().getImplementationVersion();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy