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
1125e97b
Commit
1125e97b
authored
Feb 18, 2014
by
gmessner
Browse files
Initial check-in.
parent
dcdd01bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/com/messners/gitlab/api/webhook/WebHookApplication.java
0 → 100644
View file @
1125e97b
package
com.messners.gitlab.api.webhook
;
import
javax.ws.rs.core.Application
;
import
java.util.HashSet
;
import
java.util.Set
;
public
class
WebHookApplication
extends
Application
{
@Override
public
Set
<
Class
<?>>
getClasses
()
{
Set
<
Class
<?>>
resources
=
new
HashSet
<
Class
<?>>();
resources
.
add
(
WebHookResource
.
class
);
return
(
resources
);
}
}
\ No newline at end of file
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