Skip to content

Commit ddb7ffb

Browse files
committed
refactor: improve the comments to make them timeless, requiring changes only if the RANK instruction usage changes in JHipsterModuleRank.java.
1 parent 8653f0d commit ddb7ffb

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed
Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,35 @@
11
package tech.jhipster.lite.module.domain.resource;
22

3+
/**
4+
* Represents the maturity and adoption level of JHipster modules.
5+
* Ranks range from experimental to community-validated,
6+
* helping users assess module stability and production readiness.
7+
*/
38
public enum JHipsterModuleRank {
49
/**
5-
* Not really usable as is, unless you have good expertise on the subject
6-
* (ex: custom-jhlite)
10+
* Experimental or advanced module requiring specific expertise
711
*/
812
RANK_D,
913

1014
/**
11-
* No known usage on production product
12-
* (ex: vue-core, the current version)
15+
* Module without known production usage
1316
*/
1417
RANK_C,
1518

1619
/**
17-
* One declared usage on production product
18-
* (ex: kipe-authorization)
20+
* Module with at least one confirmed production usage
1921
*/
2022
RANK_B,
2123

2224
/**
23-
* Multiple declared usages on production product, by multiple person, on various projects
24-
* and demonstrated usage on a talk, book or blog post
25-
* (ex: java-base)
25+
* Module with multiple production usages across different projects
26+
* and documented through talks, books or blog posts
2627
*/
2728
RANK_A,
2829

2930
/**
30-
* A and recognized to add some features that are not available otherwise.
31-
* Features must be really unique and this must be recognized by at least 10 person
32-
* with a vote on any social network (GitHub being a social network).
33-
* With those criteria spring-boot-cucumber-mvc is a good candidate (missing votes).
31+
* Production-proven module providing unique features,
32+
* validated by community feedback (10+ endorsements)
3433
*/
3534
RANK_S,
3635
}

0 commit comments

Comments
 (0)