io.smallrye.stork.api.MetadataKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stork-api Show documentation
Show all versions of stork-api Show documentation
Main Stork API classes. You are likely to need `smallrye-stork-core` and not this module.
The newest version!
package io.smallrye.stork.api;
/**
* Interface representing metadata key.
*/
public interface MetadataKey {
/**
* @return the name
*/
String getName();
}