Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Riina Antikainen
/
Moya
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 7bfb72c8
authored
Jan 10, 2015
by
Tuomas Riihimäki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added UserReservation pojos and bumped project version
1 parent
eed117f3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
81 additions
and
1 deletions
code/moya-restpojo/pom.xml
code/moya-restpojo/src/main/java/fi/codecrew/moya/rest/pojo/userinfo/v1/UserReservationPlacePojo.java
code/moya-restpojo/src/main/java/fi/codecrew/moya/rest/pojo/userinfo/v1/UserReservationRoot.java
code/moya-restpojo/pom.xml
View file @
7bfb72c
...
...
@@ -3,7 +3,7 @@
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
moya-restpojo
</artifactId>
<groupId>
fi.codecrew.moya
</groupId>
<version>
1.0
</version>
<version>
1.0
.2
</version>
<build>
<plugins>
<plugin>
...
...
code/moya-restpojo/src/main/java/fi/codecrew/moya/rest/pojo/userinfo/v1/UserReservationPlacePojo.java
0 → 100644
View file @
7bfb72c
package
fi
.
codecrew
.
moya
.
rest
.
pojo
.
userinfo
.
v1
;
import
javax.xml.bind.annotation.XmlElement
;
public
class
UserReservationPlacePojo
{
@XmlElement
private
Integer
placeid
;
@XmlElement
private
String
placename
;
@XmlElement
private
boolean
placegiven
;
public
String
getPlacename
()
{
return
placename
;
}
public
void
setPlacename
(
String
placename
)
{
this
.
placename
=
placename
;
}
public
boolean
isPlacegiven
()
{
return
placegiven
;
}
public
void
setPlacegiven
(
boolean
placegiven
)
{
this
.
placegiven
=
placegiven
;
}
public
Integer
getPlaceid
()
{
return
placeid
;
}
public
void
setPlaceid
(
Integer
placeid
)
{
this
.
placeid
=
placeid
;
}
}
code/moya-restpojo/src/main/java/fi/codecrew/moya/rest/pojo/userinfo/v1/UserReservationRoot.java
0 → 100644
View file @
7bfb72c
/*
* Copyright Codecrew Ry
*
* All rights reserved.
*
* This license applies to any software containing a notice placed by the
* copyright holder. Such software is herein referred to as the Software.
* This license covers modification, distribution and use of the Software.
*
* Any distribution and use in source and binary forms, with or without
* modification is not permitted without explicit written permission from the
* copyright owner.
*
* A non-exclusive royalty-free right is granted to the copyright owner of the
* Software to use, modify and distribute all modifications to the Software in
* future versions of the Software.
*
*/
package
fi
.
codecrew
.
moya
.
rest
.
pojo
.
userinfo
.
v1
;
import
java.util.List
;
import
javax.xml.bind.annotation.XmlRootElement
;
@XmlRootElement
()
public
class
UserReservationRoot
{
private
List
<
UserReservationRoot
>
eventusers
;
public
UserReservationRoot
()
{
super
();
}
public
List
<
UserReservationRoot
>
getEventusers
()
{
return
eventusers
;
}
public
void
setEventusers
(
List
<
UserReservationRoot
>
eventusers
)
{
this
.
eventusers
=
eventusers
;
}
}
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