com.intland.codebeamer.persistence.dto
Class ProjectDto
java.lang.Object
com.intland.codebeamer.persistence.dto.base.IdentifiableDto
com.intland.codebeamer.persistence.dto.base.NamedDto
com.intland.codebeamer.persistence.dto.base.DescribeableDto
com.intland.codebeamer.persistence.dto.ProjectDto
- All Implemented Interfaces:
- BaseDto, IndexableDto, ReferableDto, java.io.Serializable, java.lang.Cloneable, java.lang.Comparable
- Direct Known Subclasses:
- ReadOnlyProjectDto
public class ProjectDto
- extends DescribeableDto
- implements ReferableDto, IndexableDto
Wraps a project.
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
INTERWIKI_LINK_TYPE
public static final java.lang.String INTERWIKI_LINK_TYPE
- See Also:
- Constant Field Values
ANYBODY_CAN_JOIN_WITH_APPROVAL
public static final java.lang.String ANYBODY_CAN_JOIN_WITH_APPROVAL
- See Also:
- Constant Field Values
ANYBODY_CAN_JOIN_WITHOUT_APPROVAL
public static final java.lang.String ANYBODY_CAN_JOIN_WITHOUT_APPROVAL
- See Also:
- Constant Field Values
WAITING_FOR_APPROVAL
public static final java.lang.String WAITING_FOR_APPROVAL
- See Also:
- Constant Field Values
ProjectDto
public ProjectDto()
ProjectDto
public ProjectDto(java.lang.Integer id,
java.lang.String name)
ProjectDto
public ProjectDto(ProjectDto project)
getPropagation
public java.lang.String getPropagation()
setPropagation
public void setPropagation(java.lang.String propagation)
getDefaultMemberRoleId
public java.lang.Integer getDefaultMemberRoleId()
setDefaultMemberRoleId
public void setDefaultMemberRoleId(java.lang.Integer defaultMemberRole)
isCanAnyBodyJoin
public boolean isCanAnyBodyJoin()
isJoinWithApproval
public boolean isJoinWithApproval()
isPublic
public boolean isPublic()
getAllowedHost
public java.lang.String getAllowedHost()
setAllowedHost
public void setAllowedHost(java.lang.String allowedHost)
getUserName
public java.lang.String getUserName()
setUserName
public void setUserName(java.lang.String userName)
getPassword
public java.lang.String getPassword()
setPassword
public void setPassword(java.lang.String password)
getHomePage
public java.lang.String getHomePage()
setHomePage
public void setHomePage(java.lang.String homepage)
getMountPoint
public java.lang.String getMountPoint()
setMountPoint
public void setMountPoint(java.lang.String mountPont)
getSyncOptions
public java.lang.String getSyncOptions()
setSyncOptions
public void setSyncOptions(java.lang.String syncOptions)
getStartDate
public java.util.Date getStartDate()
setStartDate
public void setStartDate(java.util.Date startDate)
getEndDate
public java.util.Date getEndDate()
setEndDate
public void setEndDate(java.util.Date endDate)
getCreatedAt
public java.util.Date getCreatedAt()
setCreatedAt
public void setCreatedAt(java.util.Date createdAt)
getCreatedBy
public UserDto getCreatedBy()
setCreatedBy
public void setCreatedBy(UserDto createdBy)
getCreatedFromHost
public java.lang.String getCreatedFromHost()
setCreatedFromHost
public void setCreatedFromHost(java.lang.String createdFromHost)
getVirtualHost
public java.lang.String getVirtualHost()
setVirtualHost
public void setVirtualHost(java.lang.String virtualHost)
getTopDirectory
public java.lang.String getTopDirectory()
setTopDirectory
public void setTopDirectory(java.lang.String topDirectory)
getEnvironment
public java.lang.String getEnvironment()
setEnvironment
public void setEnvironment(java.lang.String environment)
getCategory
public java.lang.String getCategory()
setCategory
public void setCategory(java.lang.String topic)
getCopyright
public java.lang.String getCopyright()
setCopyright
public void setCopyright(java.lang.String copyright)
getNatureLanguage
public java.lang.String getNatureLanguage()
setNatureLanguage
public void setNatureLanguage(java.lang.String natureLanguage)
getDevelopmentLanguage
public java.lang.String getDevelopmentLanguage()
setDevelopmentLanguage
public void setDevelopmentLanguage(java.lang.String developmentLanguage)
getWikiHomepageId
public java.lang.Integer getWikiHomepageId()
setWikiHomepageId
public void setWikiHomepageId(java.lang.Integer wikiPageId)
getTrackerHomepageId
public java.lang.Integer getTrackerHomepageId()
setTrackerHomepageId
public void setTrackerHomepageId(java.lang.Integer trackerHomepageId)
isIndexed
public boolean isIndexed()
- Specified by:
isIndexed
in interface IndexableDto
setIndexed
public void setIndexed(boolean indexed)
- Specified by:
setIndexed
in interface IndexableDto
isDisabled
public java.lang.Boolean isDisabled()
setDisabled
public void setDisabled(java.lang.Boolean disabled)
getStatus
public java.lang.String getStatus()
setStatus
public void setStatus(java.lang.String status)
isStatus1
public java.lang.String isStatus1()
setStatus1
public void setStatus1(java.lang.String status1)
getUnusedBlb1
public java.lang.String getUnusedBlb1()
setUnusedBlb1
public void setUnusedBlb1(java.lang.String unusedBlb1)
getUnusedVchr1
public java.lang.String getUnusedVchr1()
setUnusedVchr1
public void setUnusedVchr1(java.lang.String unusedVchr1)
getKeyName
public java.lang.String getKeyName()
setKeyName
public void setKeyName(java.lang.String keyName)
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in class NamedDto
compareTo
public int compareTo(java.lang.Object obj)
- Description copied from class:
NamedDto
- Caution: NamedDto compareTo violates the rule that
a.equals(b)
is equivalent to a.compareTo(b) == 0
, because only the names are compared
- Specified by:
compareTo
in interface java.lang.Comparable
- Overrides:
compareTo
in class NamedDto
hashCode
public int hashCode()
- Overrides:
hashCode
in class NamedDto
getGroupId
public java.lang.Integer getGroupId()
setGroupId
public void setGroupId(java.lang.Integer groupId)
getStyleClass
public java.lang.String getStyleClass()
isStarted
public boolean isStarted()
isNotStarted
public boolean isNotStarted()
isDue
public boolean isDue()
getShortDescription
public java.lang.String getShortDescription()
- Description copied from interface:
ReferableDto
- Returns the short description that represent this
entity in the user interface.
This normally delegates to another getter, like
ProjectDto.getName()
or
TrackerItemDto.getSummary()
.
- Specified by:
getShortDescription
in interface ReferableDto
getUrlLink
public java.lang.String getUrlLink()
- Description copied from interface:
ReferableDto
- Returns the local URL that points to the web page
where this DTO is managed.
- Specified by:
getUrlLink
in interface ReferableDto
getInterwikiLink
public java.lang.String getInterwikiLink()
- Description copied from interface:
ReferableDto
- Returns the interwiki link that points to the web page
where this DTO is managed.
- Specified by:
getInterwikiLink
in interface ReferableDto
getIconUrl
public java.lang.String getIconUrl()
- Description copied from interface:
ReferableDto
- Returns the URL of the (small) icon image that represents
this DTO type.
- Specified by:
getIconUrl
in interface ReferableDto
Copyright © 2006-2009 Intland Software. All rights reserved.