Liferay Group Types

When I ran the following sql

select distinct(type_) from Group_

I get group types 0,1,3 in my database table Group_.

What does 0, 1 and 3 mean, and are there other possible values?

+3
source share
1 answer

Got a response from com.liferay.portal.model.GroupConstants TYPE_COMMUNITY_OPEN = 1 TYPE_COMMUNITY_RESTRICTED = 2 TYPE_COMMUNITY_PRIVATE = 3 DEFAULT_PARENT_GROUP_ID = 0

+4
source

All Articles