ru.curs.hurdygurdy.ClassCategory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hurdy-gurdy Show documentation
Show all versions of hurdy-gurdy Show documentation
Client/server code generator for OpenAPI
package ru.curs.hurdygurdy;
public enum ClassCategory {
/**
* Data transition object class.
*/
DTO("dto"),
/**
* Controller (api) class.
*/
CONTROLLER("controller");
private final String packageName;
ClassCategory(String packageName) {
this.packageName = packageName;
}
public String getPackageName() {
return packageName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy