Change visibility of Organization.OrganizationType from package level to public to allow users call getOrganizationType and setOrganizationType

This commit is contained in:
Giambattista Bloisi 2024-06-11 18:11:12 +02:00
parent 9eaad49a2e
commit 2dc10b8afe
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import java.util.List;
public class Organization extends OafEntity implements Serializable {
enum OrganizationType {
public enum OrganizationType {
Archive, Company, Education, Facility, Government, Healthcare, Nonprofit, Other, Unknown
}