package
model
Type Members
-
case class
AccessToken(accessTokenId: Int = 0, userName: String, tokenHash: String, note: String) extends Product with Serializable
-
-
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) extends Product with Serializable
-
-
case class
Activity(userName: String, repositoryName: String, activityUserName: String, activityType: String, message: String, additionalInfo: Option[String], activityDate: Date, activityId: Int = 0) extends Product with Serializable
-
-
case class
Collaborator(userName: String, repositoryName: String, collaboratorName: String, role: String) extends Product with Serializable
-
-
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]) 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
-
-
-
case class
GroupMember(groupName: String, userName: String, isManager: Boolean) extends Product with Serializable
-
-
case class
Issue(userName: String, repositoryName: String, issueId: Int, openedUserName: String, milestoneId: Option[Int], assignedUserName: Option[String], title: String, content: Option[String], closed: Boolean, registeredDate: Date, updatedDate: Date, isPullRequest: Boolean) extends Product with Serializable
-
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
-
-
-
case class
IssueLabel(userName: String, repositoryName: String, issueId: Int, labelId: Int) extends Product with Serializable
-
-
case class
Label(userName: String, repositoryName: String, labelId: Int = 0, labelName: String, color: String) extends Product with Serializable
-
-
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
Profile extends AnyRef
-
-
case class
ProtectedBranch(userName: String, repositoryName: String, branch: String, statusCheckAdmin: Boolean) extends Product with Serializable
-
-
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) extends Product with Serializable
-
-
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
-
-
case class
RepositoryOptions(issuesOption: String, externalIssuesUrl: Option[String], wikiOption: String, externalWikiUrl: Option[String], allowFork: Boolean) extends Product with Serializable
-
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
-
-
-
case class
WebHook(userName: String, repositoryName: String, url: String, ctype: WebHookContentType, token: Option[String]) extends Product with Serializable
-
-
case class
WebHookContentType(code: String, ctype: String) extends Product with Serializable
-
case class
WebHookEvent(userName: String, repositoryName: String, url: String, event: Event) extends Product with Serializable
-
Inherited from AnyRef
Inherited from Any