|
Liferay 6.0.3 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portlet.documentlibrary.model.DLFolderWrapper
public class DLFolderWrapper
This class is a wrapper for DLFolder.
DLFolder,
Serialized Form| Constructor Summary | |
|---|---|
DLFolderWrapper(DLFolder dlFolder)
|
|
| Method Summary | |
|---|---|
Object |
clone()
Creates a shallow clone of this model instance. |
int |
compareTo(DLFolder dlFolder)
|
List<DLFolder> |
getAncestors()
|
long |
getCompanyId()
|
Date |
getCreateDate()
|
String |
getDescription()
|
ExpandoBridge |
getExpandoBridge()
Gets the expando bridge for this model instance. |
long |
getFolderId()
|
long |
getGroupId()
|
Date |
getLastPostDate()
|
Date |
getModifiedDate()
|
String |
getName()
|
DLFolder |
getParentFolder()
|
long |
getParentFolderId()
|
String |
getPath()
|
String[] |
getPathArray()
|
long |
getPrimaryKey()
|
Serializable |
getPrimaryKeyObj()
Gets the primary key for this model instance. |
long |
getUserId()
|
String |
getUserName()
|
String |
getUserUuid()
|
String |
getUuid()
|
DLFolder |
getWrappedDLFolder()
|
int |
hashCode()
|
boolean |
hasLock(long userId)
|
boolean |
isCachedModel()
Determines if this model instance was retrieved from the entity cache. |
boolean |
isEscapedModel()
Determines if this model instance has been wrapped with an HTML auto escape handler. |
boolean |
isLocked()
|
boolean |
isNew()
Determines if this model instance does not yet exist in the database. |
boolean |
isRoot()
|
void |
setCachedModel(boolean cachedModel)
Sets whether this model instance was retrieved from the entity cache. |
void |
setCompanyId(long companyId)
|
void |
setCreateDate(Date createDate)
|
void |
setDescription(String description)
|
void |
setEscapedModel(boolean escapedModel)
Sets whether this model instance has been wrapped with an HTML auto escape handler. |
void |
setExpandoBridgeAttributes(ServiceContext serviceContext)
Sets the expando bridge attributes for this model instance to the attributes stored in the service context. |
void |
setFolderId(long folderId)
|
void |
setGroupId(long groupId)
|
void |
setLastPostDate(Date lastPostDate)
|
void |
setModifiedDate(Date modifiedDate)
|
void |
setName(String name)
|
void |
setNew(boolean n)
Sets whether this model instance does not yet exist in the database. |
void |
setParentFolderId(long parentFolderId)
|
void |
setPrimaryKey(long pk)
|
void |
setUserId(long userId)
|
void |
setUserName(String userName)
|
void |
setUserUuid(String userUuid)
|
void |
setUuid(String uuid)
|
DLFolder |
toEscapedModel()
|
String |
toString()
|
String |
toXmlString()
Gets the XML representation of this model instance. |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public DLFolderWrapper(DLFolder dlFolder)
| Method Detail |
|---|
public long getPrimaryKey()
getPrimaryKey in interface DLFolderModelpublic void setPrimaryKey(long pk)
setPrimaryKey in interface DLFolderModelpublic String getUuid()
getUuid in interface DLFolderModelpublic void setUuid(String uuid)
setUuid in interface DLFolderModelpublic long getFolderId()
getFolderId in interface DLFolderModelpublic void setFolderId(long folderId)
setFolderId in interface DLFolderModelpublic long getGroupId()
getGroupId in interface DLFolderModelpublic void setGroupId(long groupId)
setGroupId in interface DLFolderModelpublic long getCompanyId()
getCompanyId in interface DLFolderModelpublic void setCompanyId(long companyId)
setCompanyId in interface DLFolderModelpublic long getUserId()
getUserId in interface DLFolderModelpublic void setUserId(long userId)
setUserId in interface DLFolderModel
public String getUserUuid()
throws SystemException
getUserUuid in interface DLFolderModelSystemExceptionpublic void setUserUuid(String userUuid)
setUserUuid in interface DLFolderModelpublic String getUserName()
getUserName in interface DLFolderModelpublic void setUserName(String userName)
setUserName in interface DLFolderModelpublic Date getCreateDate()
getCreateDate in interface DLFolderModelpublic void setCreateDate(Date createDate)
setCreateDate in interface DLFolderModelpublic Date getModifiedDate()
getModifiedDate in interface DLFolderModelpublic void setModifiedDate(Date modifiedDate)
setModifiedDate in interface DLFolderModelpublic long getParentFolderId()
getParentFolderId in interface DLFolderModelpublic void setParentFolderId(long parentFolderId)
setParentFolderId in interface DLFolderModelpublic String getName()
getName in interface DLFolderModelpublic void setName(String name)
setName in interface DLFolderModelpublic String getDescription()
getDescription in interface DLFolderModelpublic void setDescription(String description)
setDescription in interface DLFolderModelpublic Date getLastPostDate()
getLastPostDate in interface DLFolderModelpublic void setLastPostDate(Date lastPostDate)
setLastPostDate in interface DLFolderModelpublic DLFolder toEscapedModel()
toEscapedModel in interface DLFolderModelpublic boolean isNew()
BaseModel
isNew in interface BaseModel<DLFolder>isNew in interface DLFolderModeltrue if this model instance does not yet exist in
the database; false otherwisepublic void setNew(boolean n)
BaseModel
setNew in interface BaseModel<DLFolder>setNew in interface DLFolderModeln - whether this model instance does not yet exist in the databasepublic boolean isCachedModel()
BaseModel
isCachedModel in interface BaseModel<DLFolder>isCachedModel in interface DLFolderModeltrue if this model instance was retrieved from the
entity cache; false otherwiseBaseModel.setCachedModel(boolean)public void setCachedModel(boolean cachedModel)
BaseModel
setCachedModel in interface BaseModel<DLFolder>setCachedModel in interface DLFolderModelcachedModel - whether this model instance was retrieved from the
entity cacheEntityCachepublic boolean isEscapedModel()
BaseModel
isEscapedModel in interface BaseModel<DLFolder>isEscapedModel in interface DLFolderModeltrue if this model instance has been wrapped with an
HTML auto escape handler; false otherwiseBaseModel.setEscapedModel(boolean)public void setEscapedModel(boolean escapedModel)
BaseModel
A model instance can be wrapped with an HTML auto escape handler using
its toEscapedModel method. For example, UserModel.toEscapedModel().
setEscapedModel in interface BaseModel<DLFolder>setEscapedModel in interface DLFolderModelescapedModel - whether this model instance has been wrapped with an
HTML auto escape handlerAutoEscapeBeanHandlerpublic Serializable getPrimaryKeyObj()
BaseModel
getPrimaryKeyObj in interface BaseModel<DLFolder>getPrimaryKeyObj in interface DLFolderModelpublic ExpandoBridge getExpandoBridge()
BaseModel
getExpandoBridge in interface BaseModel<DLFolder>getExpandoBridge in interface DLFolderModelpublic void setExpandoBridgeAttributes(ServiceContext serviceContext)
BaseModel
setExpandoBridgeAttributes in interface BaseModel<DLFolder>setExpandoBridgeAttributes in interface DLFolderModelserviceContext - the service context to retrieve the expando bridge
attributes fromServiceContext.getExpandoBridgeAttributes(
)public Object clone()
BaseModel
clone in interface BaseModel<DLFolder>clone in interface DLFolderModelclone in class Objectpublic int compareTo(DLFolder dlFolder)
compareTo in interface DLFolderModelcompareTo in interface Comparable<DLFolder>public int hashCode()
hashCode in interface DLFolderModelhashCode in class Objectpublic String toString()
toString in interface DLFolderModeltoString in class Objectpublic String toXmlString()
BaseModel
toXmlString in interface BaseModel<DLFolder>toXmlString in interface DLFolderModel
public List<DLFolder> getAncestors()
throws PortalException,
SystemException
getAncestors in interface DLFolderPortalException
SystemException
public DLFolder getParentFolder()
throws PortalException,
SystemException
getParentFolder in interface DLFolderPortalException
SystemException
public String getPath()
throws PortalException,
SystemException
getPath in interface DLFolderPortalException
SystemException
public String[] getPathArray()
throws PortalException,
SystemException
getPathArray in interface DLFolderPortalException
SystemExceptionpublic boolean hasLock(long userId)
hasLock in interface DLFolderpublic boolean isLocked()
isLocked in interface DLFolderpublic boolean isRoot()
isRoot in interface DLFolderpublic DLFolder getWrappedDLFolder()
|
Liferay 6.0.3 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||