-
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11724 from renanfranca/10934-add-optional-rank-at…
…-modules add optional rank at modules domain
- Loading branch information
Showing
4 changed files
with
83 additions
and
8 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
src/main/java/tech/jhipster/lite/module/domain/resource/JHipsterModuleRank.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package tech.jhipster.lite.module.domain.resource; | ||
|
||
/** | ||
* Represents the maturity and adoption level of JHipster modules. | ||
* Ranks range from experimental to community-validated, | ||
* helping users assess module stability and production readiness. | ||
*/ | ||
public enum JHipsterModuleRank { | ||
/** | ||
* Experimental or advanced module requiring specific expertise | ||
*/ | ||
RANK_D, | ||
|
||
/** | ||
* Module without known production usage | ||
*/ | ||
RANK_C, | ||
|
||
/** | ||
* Module with at least one confirmed production usage | ||
*/ | ||
RANK_B, | ||
|
||
/** | ||
* Module with multiple production usages across different projects | ||
* and documented through talks, books or blog posts | ||
*/ | ||
RANK_A, | ||
|
||
/** | ||
* Production-proven module providing unique features, | ||
* validated by community feedback (10+ endorsements) | ||
*/ | ||
RANK_S, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters