diff --git a/src/main/java/de/licenseapi/entities/LicenseStatus.java b/src/main/java/de/licenseapi/entities/LicenseStatus.java new file mode 100644 index 0000000..5ed8b22 --- /dev/null +++ b/src/main/java/de/licenseapi/entities/LicenseStatus.java @@ -0,0 +1,25 @@ +package de.licenseapi.entities; + +public enum LicenseStatus { + + /** + * The provided license key is valid and can be used. + */ + VALID, + + /** + * The provided license key is valid, but the license is expired. + */ + EXPIRED, + + /** + * The provided license key is not valid. + */ + INVALID, + + /** + * The provided license key has reached the maximum amount of uses. + */ + MAX_USES_REACHED + +}