Skip to content

Commit

Permalink
#19 create report service
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Oct 25, 2018
1 parent ffdb2ae commit daaec55
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
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)
}
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) {

}
}

0 comments on commit daaec55

Please sign in to comment.