net.nemerosa.ontrack.model.extension.ExtensionFeature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-model Show documentation
Show all versions of ontrack-model Show documentation
Ontrack module: ontrack-model
package net.nemerosa.ontrack.model.extension;
public interface ExtensionFeature {
String getId();
String getName();
String getDescription();
/**
* Gets the version of this feature
*/
String getVersion();
default ExtensionFeatureOptions getOptions() {
return ExtensionFeatureOptions.DEFAULT;
}
default ExtensionFeatureDescription getFeatureDescription() {
return new ExtensionFeatureDescription(
getId(),
getName(),
getDescription(),
getVersion(),
getOptions()
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy