micheal marquiz
micheal marquiz

Reputation: 351

Liferay Group types

When I run 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 any other possible values?

Upvotes: 3

Views: 1928

Answers (1)

micheal marquiz
micheal marquiz

Reputation: 351

Got the Answer from com.liferay.portal.model.GroupConstants

TYPE_COMMUNITY_OPEN = 1,
TYPE_COMMUNITY_RESTRICTED = 2,
TYPE_COMMUNITY_PRIVATE = 3,
DEFAULT_PARENT_GROUP_ID = 0 

Upvotes: 4

Related Questions