forked from bwerquin/Knowledge-Back-Office
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
689 additions
and
437 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
src/main/java/fr/insee/knowledge/dao/HierarchyDAOImpl.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package fr.insee.knowledge.dao; | ||
|
||
import fr.insee.knowledge.dao.generic.IDao; | ||
import fr.insee.knowledge.domain.hierarchy.HierarchyGsbpm; | ||
|
||
public interface HierarchyGsbpmDAO extends IDao<HierarchyGsbpm> { | ||
} | ||
|
9 changes: 9 additions & 0 deletions
9
src/main/java/fr/insee/knowledge/dao/HierarchyProductDAO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package fr.insee.knowledge.dao; | ||
|
||
import fr.insee.knowledge.dao.generic.IDao; | ||
import fr.insee.knowledge.domain.hierarchy.Hierarchy; | ||
import fr.insee.knowledge.domain.hierarchy.HierarchyProduct; | ||
|
||
public interface HierarchyProductDAO extends IDao<HierarchyProduct> { | ||
} | ||
|
8 changes: 8 additions & 0 deletions
8
src/main/java/fr/insee/knowledge/dao/HierarchyServiceDAO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package fr.insee.knowledge.dao; | ||
|
||
import fr.insee.knowledge.dao.generic.IDao; | ||
import fr.insee.knowledge.domain.hierarchy.HierarchyService; | ||
|
||
public interface HierarchyServiceDAO extends IDao<HierarchyService> { | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package fr.insee.knowledge.dao; | ||
|
||
import fr.insee.knowledge.dao.generic.IDao; | ||
import fr.insee.knowledge.domain.hierarchy.HierarchyProduct; | ||
import fr.insee.knowledge.domain.hierarchy.HierarchyUser; | ||
|
||
public interface HierarchyUserDAO extends IDao<HierarchyUser> { | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
.../insee/knowledge/dao/FunctionDAOImpl.java → ...e/knowledge/dao/impl/FunctionDAOImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/main/java/fr/insee/knowledge/dao/impl/HierarchyGsbpmDAOImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package fr.insee.knowledge.dao.impl; | ||
|
||
import fr.insee.knowledge.constants.Constants; | ||
import fr.insee.knowledge.dao.HierarchyGsbpmDAO; | ||
import fr.insee.knowledge.dao.HierarchyProductDAO; | ||
import fr.insee.knowledge.dao.generic.DAO; | ||
import fr.insee.knowledge.domain.hierarchy.HierarchyGsbpm; | ||
import fr.insee.knowledge.domain.hierarchy.HierarchyProduct; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class HierarchyGsbpmDAOImpl extends DAO<HierarchyGsbpm> implements HierarchyGsbpmDAO { | ||
public HierarchyGsbpmDAOImpl() { | ||
super(HierarchyGsbpm.class, Constants.CollectionHierarchy); | ||
} | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
src/main/java/fr/insee/knowledge/dao/impl/HierarchyProductDAOImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package fr.insee.knowledge.dao.impl; | ||
|
||
import fr.insee.knowledge.constants.Constants; | ||
import fr.insee.knowledge.dao.HierarchyProductDAO; | ||
import fr.insee.knowledge.dao.generic.DAO; | ||
import fr.insee.knowledge.domain.hierarchy.HierarchyProduct; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class HierarchyProductDAOImpl extends DAO<HierarchyProduct> implements HierarchyProductDAO { | ||
public HierarchyProductDAOImpl() { | ||
super(HierarchyProduct.class, Constants.CollectionHierarchy); | ||
} | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
src/main/java/fr/insee/knowledge/dao/impl/HierarchyServiceDAOImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package fr.insee.knowledge.dao.impl; | ||
|
||
import fr.insee.knowledge.constants.Constants; | ||
import fr.insee.knowledge.dao.HierarchyServiceDAO; | ||
import fr.insee.knowledge.dao.generic.DAO; | ||
import fr.insee.knowledge.domain.hierarchy.HierarchyService; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class HierarchyServiceDAOImpl extends DAO<HierarchyService> implements HierarchyServiceDAO { | ||
public HierarchyServiceDAOImpl() { | ||
super(HierarchyService.class, Constants.CollectionHierarchy); | ||
} | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
src/main/java/fr/insee/knowledge/dao/impl/HierarchyUserDAOImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package fr.insee.knowledge.dao.impl; | ||
|
||
import fr.insee.knowledge.constants.Constants; | ||
import fr.insee.knowledge.dao.HierarchyUserDAO; | ||
import fr.insee.knowledge.dao.generic.DAO; | ||
import fr.insee.knowledge.domain.hierarchy.HierarchyUser; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class HierarchyUserDAOImpl extends DAO<HierarchyUser> implements HierarchyUserDAO { | ||
public HierarchyUserDAOImpl() { | ||
super(HierarchyUser.class, Constants.CollectionHierarchy); | ||
} | ||
|
||
} |
Oops, something went wrong.