-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
ffdb2ae
commit daaec55
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
acropolis-service/src/main/kotlin/org/ephyra/acropolis/service/api/IReportService.kt
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,14 @@ | ||
package org.ephyra.acropolis.service.api | ||
|
||
/** | ||
* Service for creation reports on a project. | ||
* These may be different formats and contain all or a subset of the data contained in the project. | ||
*/ | ||
interface IReportService { | ||
/** | ||
* Create a report which contains details of the software in the given project | ||
* | ||
* @param projectName The name of the project to run the report on | ||
*/ | ||
fun runSoftwareReport(projectName: String) | ||
} |
14 changes: 14 additions & 0 deletions
14
acropolis-service/src/main/kotlin/org/ephyra/acropolis/service/impl/ReportService.kt
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,14 @@ | ||
package org.ephyra.acropolis.service.impl | ||
|
||
import org.ephyra.acropolis.service.api.IReportService | ||
import org.springframework.stereotype.Service | ||
|
||
/** | ||
* Report service implementation | ||
*/ | ||
@Service | ||
class ReportService : IReportService { | ||
override fun runSoftwareReport(projectName: String) { | ||
|
||
} | ||
} |