Packages

package model

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. model
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Package Members

  1. package activity

Type Members

  1. case class AccessToken(accessTokenId: Int = 0, userName: String, tokenHash: String, note: String) extends Product with Serializable
  2. trait AccessTokenComponent extends AnyRef
  3. case class Account(userName: String, fullName: String, mailAddress: String, password: String, isAdmin: Boolean, url: Option[String], registeredDate: Date, updatedDate: Date, lastLoginDate: Option[Date], image: Option[String], isGroupAccount: Boolean, isRemoved: Boolean, description: Option[String]) extends Product with Serializable
  4. trait AccountComponent extends AnyRef
  5. case class AccountExtraMailAddress(userName: String, extraMailAddress: String) extends Product with Serializable
  6. trait AccountExtraMailAddressComponent extends AnyRef
  7. case class AccountFederation(issuer: String, subject: String, userName: String) extends Product with Serializable
  8. trait AccountFederationComponent extends AnyRef
  9. case class AccountPreference(userName: String, highlighterTheme: String = "prettify") extends Product with Serializable
  10. trait AccountPreferenceComponent extends AnyRef
  11. case class AccountWebHook(userName: String, url: String, ctype: WebHookContentType, token: Option[String]) extends WebHook with Product with Serializable
  12. trait AccountWebHookComponent extends TemplateComponent
  13. case class AccountWebHookEvent(userName: String, url: String, event: Event) extends Product with Serializable
  14. trait AccountWebHookEventComponent extends TemplateComponent
  15. case class Activity(userName: String, repositoryName: String, activityUserName: String, activityType: String, message: String, additionalInfo: Option[String], activityDate: Date, activityId: String) extends Product with Serializable
  16. case class Collaborator(userName: String, repositoryName: String, collaboratorName: String, role: String) extends Product with Serializable
  17. trait CollaboratorComponent extends TemplateComponent
  18. sealed trait Comment extends AnyRef
  19. case class CommitComment(userName: String, repositoryName: String, commitId: String, commentId: Int = 0, commentedUserName: String, content: String, fileName: Option[String], oldLine: Option[Int], newLine: Option[Int], registeredDate: Date, updatedDate: Date, issueId: Option[Int], originalCommitId: String, originalOldLine: Option[Int], originalNewLine: Option[Int]) extends Comment with Product with Serializable
  20. trait CommitCommentComponent extends TemplateComponent
  21. case class CommitComments(fileName: String, commentedUserName: String, registeredDate: Date, comments: Seq[CommitComment], diff: Option[String]) extends Comment with Product with Serializable
  22. sealed abstract class CommitState extends AnyRef
  23. case class CommitStatus(commitStatusId: Int = 0, userName: String, repositoryName: String, commitId: String, context: String, state: CommitState, targetUrl: Option[String], description: Option[String], creator: String, registeredDate: Date, updatedDate: Date) extends Product with Serializable
  24. trait CommitStatusComponent extends TemplateComponent
  25. trait CoreProfile extends ProfileProvider with Profile with AccessTokenComponent with AccountComponent with ActivityComponent with CollaboratorComponent with CommitCommentComponent with CommitStatusComponent with GroupMemberComponent with IssueComponent with IssueCommentComponent with IssueLabelComponent with LabelComponent with PriorityComponent with MilestoneComponent with PullRequestComponent with RepositoryComponent with SshKeyComponent with GpgKeyComponent with RepositoryWebHookComponent with RepositoryWebHookEventComponent with AccountWebHookComponent with AccountWebHookEventComponent with AccountFederationComponent with ProtectedBranchComponent with DeployKeyComponent with ReleaseTagComponent with ReleaseAssetComponent with AccountExtraMailAddressComponent with AccountPreferenceComponent
  26. case class DeployKey(userName: String, repositoryName: String, deployKeyId: Int = 0, title: String, publicKey: String, allowWrite: Boolean) extends Product with Serializable
  27. trait DeployKeyComponent extends TemplateComponent
  28. case class GpgKey(userName: String, keyId: Int = 0, gpgKeyId: Long, title: String, publicKey: String) extends Product with Serializable
  29. trait GpgKeyComponent extends AnyRef
  30. case class GroupMember(groupName: String, userName: String, isManager: Boolean) extends Product with Serializable
  31. trait GroupMemberComponent extends AnyRef
  32. case class Issue(userName: String, repositoryName: String, issueId: Int, openedUserName: String, milestoneId: Option[Int], priorityId: Option[Int], assignedUserName: Option[String], title: String, content: Option[String], closed: Boolean, registeredDate: Date, updatedDate: Date, isPullRequest: Boolean) extends Product with Serializable
  33. case class IssueComment(userName: String, repositoryName: String, issueId: Int, commentId: Int = 0, action: String, commentedUserName: String, content: String, registeredDate: Date, updatedDate: Date) extends Comment with Product with Serializable
  34. trait IssueCommentComponent extends TemplateComponent
  35. trait IssueComponent extends TemplateComponent
  36. case class IssueLabel(userName: String, repositoryName: String, issueId: Int, labelId: Int) extends Product with Serializable
  37. trait IssueLabelComponent extends TemplateComponent
  38. case class Label(userName: String, repositoryName: String, labelId: Int = 0, labelName: String, color: String) extends Product with Serializable
  39. trait LabelComponent extends TemplateComponent
  40. case class Milestone(userName: String, repositoryName: String, milestoneId: Int = 0, title: String, description: Option[String], dueDate: Option[Date], closedDate: Option[Date]) extends Product with Serializable
  41. trait MilestoneComponent extends TemplateComponent
  42. case class Priority(userName: String, repositoryName: String, priorityId: Int = 0, priorityName: String, description: Option[String], isDefault: Boolean, ordering: Int = 0, color: String) extends Product with Serializable
  43. trait PriorityComponent extends TemplateComponent
  44. trait Profile extends AnyRef
  45. trait ProfileProvider extends AnyRef
  46. case class ProtectedBranch(userName: String, repositoryName: String, branch: String, statusCheckAdmin: Boolean) extends Product with Serializable
  47. trait ProtectedBranchComponent extends TemplateComponent
  48. case class ProtectedBranchContext(userName: String, repositoryName: String, branch: String, context: String) extends Product with Serializable
  49. case class PullRequest(userName: String, repositoryName: String, issueId: Int, branch: String, requestUserName: String, requestRepositoryName: String, requestBranch: String, commitIdFrom: String, commitIdTo: String, isDraft: Boolean) extends Product with Serializable
  50. trait PullRequestComponent extends TemplateComponent
  51. case class ReleaseAsset(userName: String, repositoryName: String, tag: String, releaseAssetId: Int = 0, fileName: String, label: String, size: Long, uploader: String, registeredDate: Date, updatedDate: Date) extends Product with Serializable
  52. trait ReleaseAssetComponent extends TemplateComponent
  53. case class ReleaseTag(userName: String, repositoryName: String, name: String, tag: String, author: String, content: Option[String], registeredDate: Date, updatedDate: Date) extends Product with Serializable
  54. trait ReleaseTagComponent extends TemplateComponent
  55. case class Repository(userName: String, repositoryName: String, isPrivate: Boolean, description: Option[String], defaultBranch: String, registeredDate: Date, updatedDate: Date, lastActivityDate: Date, originUserName: Option[String], originRepositoryName: Option[String], parentUserName: Option[String], parentRepositoryName: Option[String], options: RepositoryOptions) extends Product with Serializable
  56. trait RepositoryComponent extends TemplateComponent
  57. case class RepositoryOptions(issuesOption: String, externalIssuesUrl: Option[String], wikiOption: String, externalWikiUrl: Option[String], allowFork: Boolean, mergeOptions: String, defaultMergeOption: String) extends Product with Serializable
  58. case class RepositoryWebHook(userName: String, repositoryName: String, hookId: Int = 0, url: String, ctype: WebHookContentType, token: Option[String]) extends WebHook with Product with Serializable
  59. trait RepositoryWebHookComponent extends TemplateComponent
  60. case class RepositoryWebHookEvent(userName: String, repositoryName: String, url: String, event: Event) extends Product with Serializable
  61. trait RepositoryWebHookEventComponent extends TemplateComponent
  62. sealed abstract class Role extends AnyRef
  63. type Session = SessionDef
  64. case class SshKey(userName: String, sshKeyId: Int = 0, title: String, publicKey: String) extends Product with Serializable
  65. trait SshKeyComponent extends AnyRef
  66. trait TemplateComponent extends AnyRef
    Attributes
    protected
  67. trait WebHook extends AnyRef
  68. sealed abstract case class WebHookContentType extends Product with Serializable

Deprecated Type Members

  1. trait ActivityComponent extends TemplateComponent

    ActivityComponent has been deprecated, but keep it for binary compatibility.

    ActivityComponent has been deprecated, but keep it for binary compatibility.

    Annotations
    @deprecated
    Deprecated

    (Since version 4.34.0) ActivityComponent has been deprecated, but keep it for binary compatibility.

Value Members

  1. object CommitState
  2. object CommitStatus extends Serializable
  3. object Profile extends CoreProfile
  4. object Role
  5. object WebHook
  6. object WebHookContentType extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped