Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Codecrew
/
Moya
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
30
Merge Requests
2
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit faacd2a3
authored
Jan 08, 2018
by
Tuukka Kivilahti
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'add-arraylistwrapper' into 'master'
Add missing ArrayListWrapper See merge request
!380
2 parents
8441bf57
9f4c893e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
code/moya-web/src/main/java/fi/codecrew/moya/rest/ArrayListWrapper.java
code/moya-web/src/main/java/fi/codecrew/moya/rest/ArrayListWrapper.java
0 → 100644
View file @
faacd2a
package
fi
.
codecrew
.
moya
.
rest
;
import
javax.xml.bind.annotation.XmlRootElement
;
import
java.util.ArrayList
;
@XmlRootElement
public
class
ArrayListWrapper
<
T
>
{
public
ArrayListWrapper
()
{
}
public
ArrayListWrapper
(
ArrayList
<
T
>
list
)
{
this
.
list
=
list
;
}
public
ArrayList
<
T
>
list
=
new
ArrayList
<
T
>();
}
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
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 post a comment