package model
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- model
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class AccessToken(accessTokenId: Int = 0, userName: String, tokenHash: String, note: String) extends Product with Serializable
- trait AccessTokenComponent extends AnyRef
- 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
- trait AccountComponent extends AnyRef
- case class AccountExtraMailAddress(userName: String, extraMailAddress: String) extends Product with Serializable
- trait AccountExtraMailAddressComponent extends AnyRef
- case class AccountFederation(issuer: String, subject: String, userName: String) extends Product with Serializable
- trait AccountFederationComponent extends AnyRef
- case class AccountPreference(userName: String, highlighterTheme: String = "prettify") extends Product with Serializable
- trait AccountPreferenceComponent extends AnyRef
- case class AccountWebHook(userName: String, url: String, ctype: WebHookContentType, token: Option[String]) extends WebHook with Product with Serializable
- trait AccountWebHookComponent extends TemplateComponent
- case class AccountWebHookEvent(userName: String, url: String, event: Event) extends Product with Serializable
- trait AccountWebHookEventComponent extends TemplateComponent
- case class Activity(userName: String, repositoryName: String, activityUserName: String, activityType: String, message: String, additionalInfo: Option[String], activityDate: Date, activityId: String) extends Product with Serializable
- case class Collaborator(userName: String, repositoryName: String, collaboratorName: String, role: String) extends Product with Serializable
- trait CollaboratorComponent extends TemplateComponent
- sealed trait Comment extends AnyRef
- 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
- trait CommitCommentComponent extends TemplateComponent
- case class CommitComments(fileName: String, commentedUserName: String, registeredDate: Date, comments: Seq[CommitComment], diff: Option[String]) extends Comment with Product with Serializable
- sealed abstract class CommitState extends AnyRef
- 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
- trait CommitStatusComponent extends TemplateComponent
- 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 with CustomFieldComponent with IssueCustomFieldComponent with IssueAssigneeComponent
- case class CustomField(userName: String, repositoryName: String, fieldId: Int = 0, fieldName: String, fieldType: String, constraints: Option[String], enableForIssues: Boolean, enableForPullRequests: Boolean) extends Product with Serializable
- trait CustomFieldBehavior extends AnyRef
- trait CustomFieldComponent extends TemplateComponent
- case class DeployKey(userName: String, repositoryName: String, deployKeyId: Int = 0, title: String, publicKey: String, allowWrite: Boolean) extends Product with Serializable
- trait DeployKeyComponent extends TemplateComponent
- case class GpgKey(userName: String, keyId: Int = 0, gpgKeyId: Long, title: String, publicKey: String) extends Product with Serializable
- trait GpgKeyComponent extends AnyRef
- case class GroupMember(groupName: String, userName: String, isManager: Boolean) extends Product with Serializable
- trait GroupMemberComponent extends AnyRef
- case class Issue(userName: String, repositoryName: String, issueId: Int, openedUserName: String, milestoneId: Option[Int], priorityId: Option[Int], title: String, content: Option[String], closed: Boolean, registeredDate: Date, updatedDate: Date, isPullRequest: Boolean) extends Product with Serializable
- case class IssueAssignee(userName: String, repositoryName: String, issueId: Int, assigneeUserName: String) extends Product with Serializable
- trait IssueAssigneeComponent extends TemplateComponent
- 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
- trait IssueCommentComponent extends TemplateComponent
- trait IssueComponent extends TemplateComponent
- case class IssueCustomField(userName: String, repositoryName: String, issueId: Int, fieldId: Int, value: String) extends Product with Serializable
- trait IssueCustomFieldComponent extends TemplateComponent
- case class IssueLabel(userName: String, repositoryName: String, issueId: Int, labelId: Int) extends Product with Serializable
- trait IssueLabelComponent extends TemplateComponent
- case class Label(userName: String, repositoryName: String, labelId: Int = 0, labelName: String, color: String) extends Product with Serializable
- trait LabelComponent extends TemplateComponent
- 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
- trait MilestoneComponent extends TemplateComponent
- 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
- trait PriorityComponent extends TemplateComponent
- trait Profile extends AnyRef
- trait ProfileProvider extends AnyRef
- case class ProtectedBranch(userName: String, repositoryName: String, branch: String, statusCheckAdmin: Boolean) extends Product with Serializable
- trait ProtectedBranchComponent extends TemplateComponent
- case class ProtectedBranchContext(userName: String, repositoryName: String, branch: String, context: String) extends Product with Serializable
- 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
- trait PullRequestComponent extends TemplateComponent
- 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
- trait ReleaseAssetComponent extends TemplateComponent
- case class ReleaseTag(userName: String, repositoryName: String, name: String, tag: String, author: String, content: Option[String], registeredDate: Date, updatedDate: Date) extends Product with Serializable
- trait ReleaseTagComponent extends TemplateComponent
- 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
- trait RepositoryComponent extends TemplateComponent
- case class RepositoryOptions(issuesOption: String, externalIssuesUrl: Option[String], wikiOption: String, externalWikiUrl: Option[String], allowFork: Boolean, mergeOptions: String, defaultMergeOption: String, safeMode: Boolean) extends Product with Serializable
- case class RepositoryWebHook(userName: String, repositoryName: String, hookId: Int = 0, url: String, ctype: WebHookContentType, token: Option[String]) extends WebHook with Product with Serializable
- trait RepositoryWebHookComponent extends TemplateComponent
- case class RepositoryWebHookEvent(userName: String, repositoryName: String, url: String, event: Event) extends Product with Serializable
- trait RepositoryWebHookEventComponent extends TemplateComponent
- sealed abstract class Role extends AnyRef
- type Session = SessionDef
- case class SshKey(userName: String, sshKeyId: Int = 0, title: String, publicKey: String) extends Product with Serializable
- trait SshKeyComponent extends AnyRef
- trait TemplateComponent extends AnyRef
- Attributes
- protected
- trait WebHook extends AnyRef
- sealed abstract case class WebHookContentType extends Product with Serializable
Deprecated Type Members
- 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
- object CommitState
- object CommitStatus extends Serializable
- object CustomFieldBehavior
- object Profile extends CoreProfile
- object Role
- object WebHook
- object WebHookContentType extends Serializable