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 318f78fb
authored
Dec 04, 2014
by
Tuomas Riihimäki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Place slot fixes
1 parent
a40920ed
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
code/moya-beans/ejbModule/fi/codecrew/moya/facade/PlaceSlotFacade.java
code/moya-database/src/main/java/fi/codecrew/moya/model/PlaceSlot.java
code/moya-beans/ejbModule/fi/codecrew/moya/facade/PlaceSlotFacade.java
View file @
318f78f
...
...
@@ -41,7 +41,7 @@ import fi.codecrew.moya.model.PlaceSlot_;
@Stateless
@LocalBean
public
class
PlaceSlotFacade
extends
IntegerPkGenericFacade
<
Place
>
{
public
class
PlaceSlotFacade
extends
IntegerPkGenericFacade
<
Place
Slot
>
{
private
static
final
Logger
logger
=
LoggerFactory
.
getLogger
(
PlaceSlotFacade
.
class
);
...
...
@@ -50,7 +50,7 @@ public class PlaceSlotFacade extends IntegerPkGenericFacade<Place> {
public
PlaceSlotFacade
()
{
super
(
Place
.
class
);
super
(
Place
Slot
.
class
);
}
/**
...
...
code/moya-database/src/main/java/fi/codecrew/moya/model/PlaceSlot.java
View file @
318f78f
...
...
@@ -77,4 +77,12 @@ public class PlaceSlot extends GenericEntity {
this
.
place
=
place
;
}
public
Product
getProduct
()
{
return
product
;
}
public
void
setProduct
(
Product
product
)
{
this
.
product
=
product
;
}
}
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