Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
reg-app
Regapp
Commits
3469049e
Commit
3469049e
authored
Mar 06, 2015
by
michael.simon
Browse files
first DAO Objects for AttributeSource
parent
f09e50c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
bwreg-jpa/src/main/java/edu/kit/scc/webreg/dao/as/AttributeSourceDao.java
0 → 100644
View file @
3469049e
/*******************************************************************************
* Copyright (c) 2014 Michael Simon.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*
* Contributors:
* Michael Simon - initial
******************************************************************************/
package
edu.kit.scc.webreg.dao.as
;
import
edu.kit.scc.webreg.dao.BaseDao
;
import
edu.kit.scc.webreg.entity.as.AttributeSourceEntity
;
public
interface
AttributeSourceDao
extends
BaseDao
<
AttributeSourceEntity
,
Long
>
{
}
bwreg-jpa/src/main/java/edu/kit/scc/webreg/dao/jpa/as/JpaAttributeSourceDao.java
0 → 100644
View file @
3469049e
/*******************************************************************************
* Copyright (c) 2014 Michael Simon.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Public License v3.0
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/gpl.html
*
* Contributors:
* Michael Simon - initial
******************************************************************************/
package
edu.kit.scc.webreg.dao.jpa.as
;
import
javax.enterprise.context.ApplicationScoped
;
import
javax.inject.Named
;
import
edu.kit.scc.webreg.dao.as.AttributeSourceDao
;
import
edu.kit.scc.webreg.dao.jpa.JpaBaseDao
;
import
edu.kit.scc.webreg.entity.as.AttributeSourceEntity
;
@Named
@ApplicationScoped
public
class
JpaAttributeSourceDao
extends
JpaBaseDao
<
AttributeSourceEntity
,
Long
>
implements
AttributeSourceDao
{
@Override
public
Class
<
AttributeSourceEntity
>
getEntityClass
()
{
return
AttributeSourceEntity
.
class
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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