Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
3103fd6c
Commit
3103fd6c
authored
Feb 18, 2017
by
Greg Messner
Browse files
Mods for renaming com.messners.gitlab.api to org.gitlab4j.api
parent
266afaff
Changes
64
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/Project.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
...
...
src/main/java/org/gitlab4j/api/models/ProjectAccess.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
...
...
src/main/java/org/gitlab4j/api/models/ProjectHook.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
java.util.Date
;
import
java.util.Date
;
...
...
src/main/java/org/gitlab4j/api/models/ProjectSharedGroup.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
...
...
src/main/java/org/gitlab4j/api/models/ProjectSnippet.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
java.util.Date
;
import
java.util.Date
;
...
...
src/main/java/org/gitlab4j/api/models/Release.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
...
...
src/main/java/org/gitlab4j/api/models/Repository.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
...
...
src/main/java/org/gitlab4j/api/models/RepositoryFile.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
...
...
src/main/java/org/gitlab4j/api/models/Session.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
...
...
src/main/java/org/gitlab4j/api/models/SystemHook.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
...
...
src/main/java/org/gitlab4j/api/models/Tag.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
...
...
src/main/java/org/gitlab4j/api/models/TreeItem.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
...
...
src/main/java/org/gitlab4j/api/models/User.java
View file @
3103fd6c
package
com.messners
.gitlab.api.models
;
package
org
.gitlab
4j
.api.models
;
import
javax.xml.bind.annotation.XmlRootElement
;
import
javax.xml.bind.annotation.XmlRootElement
;
...
...
src/main/java/org/gitlab4j/api/webhook/Event.java
View file @
3103fd6c
package
com.messners
.gitlab.api.webhook
;
package
org
.gitlab
4j
.api.webhook
;
public
interface
Event
{
public
interface
Event
{
public
String
getObjectKind
();
public
String
getObjectKind
();
...
...
src/main/java/org/gitlab4j/api/webhook/EventCommit.java
View file @
3103fd6c
package
com.messners
.gitlab.api.webhook
;
package
org
.gitlab
4j
.api.webhook
;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
import
com.messners
.gitlab.api.models.Author
;
import
org
.gitlab
4j
.api.models.Author
;
public
class
EventCommit
{
public
class
EventCommit
{
...
...
src/main/java/org/gitlab4j/api/webhook/EventProject.java
View file @
3103fd6c
package
com.messners
.gitlab.api.webhook
;
package
org
.gitlab
4j
.api.webhook
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
com.messners
.gitlab.api.models.AccessLevel
;
import
org
.gitlab
4j
.api.models.AccessLevel
;
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
public
class
EventProject
{
public
class
EventProject
{
...
...
src/main/java/org/gitlab4j/api/webhook/EventRepository.java
View file @
3103fd6c
package
com.messners
.gitlab.api.webhook
;
package
org
.gitlab
4j
.api.webhook
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
com.messners
.gitlab.api.models.AccessLevel
;
import
org
.gitlab
4j
.api.models.AccessLevel
;
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
public
class
EventRepository
{
public
class
EventRepository
{
...
...
src/main/java/org/gitlab4j/api/webhook/IssueEvent.java
View file @
3103fd6c
package
com.messners
.gitlab.api.webhook
;
package
org
.gitlab
4j
.api.webhook
;
import
java.util.Date
;
import
java.util.Date
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
com.messners
.gitlab.api.models.Assignee
;
import
org
.gitlab
4j
.api.models.Assignee
;
import
com.messners
.gitlab.api.models.User
;
import
org
.gitlab
4j
.api.models.User
;
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
public
class
IssueEvent
implements
Event
{
public
class
IssueEvent
implements
Event
{
...
...
src/main/java/org/gitlab4j/api/webhook/MergeRequestEvent.java
View file @
3103fd6c
package
com.messners
.gitlab.api.webhook
;
package
org
.gitlab
4j
.api.webhook
;
import
java.util.Date
;
import
java.util.Date
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
com.messners
.gitlab.api.models.Assignee
;
import
org
.gitlab
4j
.api.models.Assignee
;
import
com.messners
.gitlab.api.models.User
;
import
org
.gitlab
4j
.api.models.User
;
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
public
class
MergeRequestEvent
implements
Event
{
public
class
MergeRequestEvent
implements
Event
{
...
...
src/main/java/org/gitlab4j/api/webhook/PushEvent.java
View file @
3103fd6c
package
com.messners
.gitlab.api.webhook
;
package
org
.gitlab
4j
.api.webhook
;
import
java.util.List
;
import
java.util.List
;
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment