Liferay 6.0-ee

com.liferay.portal.model
Interface Organization

All Superinterfaces:
BaseModel<Organization>, Cloneable, Comparable<Organization>, OrganizationModel, Serializable
All Known Implementing Classes:
OrganizationImpl, OrganizationWrapper

public interface Organization
extends OrganizationModel

The model interface for the Organization service. Represents a row in the "Organization_" database table, with each column mapped to a property of this class.

Never modify this interface directly. Add methods to OrganizationImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

Never reference this interface directly. All methods that expect a organization model instance should use the Organization interface instead.

See Also:
OrganizationModel, OrganizationImpl, OrganizationModelImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 Address getAddress()
           
 List<Address> getAddresses()
           
 List<Organization> getAncestors()
           
 String[] getChildrenTypes()
           
 List<Organization> getDescendants()
           
 Group getGroup()
           
 long getLogoId()
           
 Organization getParentOrganization()
           
 PortletPreferences getPreferences()
           
 int getPrivateLayoutsPageCount()
           
 int getPublicLayoutsPageCount()
           
 Set<String> getReminderQueryQuestions(Locale locale)
           
 Set<String> getReminderQueryQuestions(String languageId)
           
 List<Organization> getSuborganizations()
           
 int getSuborganizationsSize()
           
 int getTypeOrder()
           
 boolean hasPrivateLayouts()
           
 boolean hasPublicLayouts()
           
 boolean hasSuborganizations()
           
 boolean isParentable()
           
 boolean isRoot()
           
 
Methods inherited from interface com.liferay.portal.model.OrganizationModel
clone, compareTo, getComments, getCompanyId, getCountryId, getExpandoBridge, getLeftOrganizationId, getName, getOrganizationId, getParentOrganizationId, getPrimaryKey, getPrimaryKeyObj, getRecursable, getRegionId, getRightOrganizationId, getStatusId, getType, hashCode, isCachedModel, isEscapedModel, isNew, isRecursable, setCachedModel, setComments, setCompanyId, setCountryId, setEscapedModel, setExpandoBridgeAttributes, setLeftOrganizationId, setName, setNew, setOrganizationId, setParentOrganizationId, setPrimaryKey, setRecursable, setRegionId, setRightOrganizationId, setStatusId, setType, toEscapedModel, toString, toXmlString
 

Method Detail

getAncestors

List<Organization> getAncestors()
                                throws PortalException,
                                       SystemException
Throws:
PortalException
SystemException

getParentOrganization

Organization getParentOrganization()
                                   throws PortalException,
                                          SystemException
Throws:
PortalException
SystemException

getAddress

Address getAddress()

getAddresses

List<Address> getAddresses()
                           throws SystemException
Throws:
SystemException

getChildrenTypes

String[] getChildrenTypes()

getDescendants

List<Organization> getDescendants()
                                  throws SystemException
Throws:
SystemException

getGroup

Group getGroup()

getLogoId

long getLogoId()

getPreferences

PortletPreferences getPreferences()
                                  throws SystemException
Throws:
SystemException

getPrivateLayoutsPageCount

int getPrivateLayoutsPageCount()

getPublicLayoutsPageCount

int getPublicLayoutsPageCount()

getReminderQueryQuestions

Set<String> getReminderQueryQuestions(Locale locale)
                                      throws SystemException
Throws:
SystemException

getReminderQueryQuestions

Set<String> getReminderQueryQuestions(String languageId)
                                      throws SystemException
Throws:
SystemException

getSuborganizations

List<Organization> getSuborganizations()
                                       throws SystemException
Throws:
SystemException

getSuborganizationsSize

int getSuborganizationsSize()
                            throws SystemException
Throws:
SystemException

getTypeOrder

int getTypeOrder()

hasPrivateLayouts

boolean hasPrivateLayouts()

hasPublicLayouts

boolean hasPublicLayouts()

hasSuborganizations

boolean hasSuborganizations()
                            throws SystemException
Throws:
SystemException

isParentable

boolean isParentable()

isRoot

boolean isRoot()

Liferay 6.0-ee