Example usage for com.liferay.portal.kernel.service GroupLocalServiceUtil getStagedSites

List of usage examples for com.liferay.portal.kernel.service GroupLocalServiceUtil getStagedSites

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.service GroupLocalServiceUtil getStagedSites.

Prototype

public static java.util.List<com.liferay.portal.kernel.model.Group> getStagedSites() 

Source Link

Usage

From source file:com.liferay.site.service.persistence.test.GroupLocalServiceTest.java

License:Open Source License

@Test
public void testGetStagedSites() {
    List<Group> groups = GroupLocalServiceUtil.getStagedSites();

    Assert.assertTrue(groups.toString(), groups.isEmpty());
}