mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
Resolve "Make report filenames customizable"
This commit is contained in:
parent
592a1e87da
commit
3f361bf48b
7 changed files with 104 additions and 9 deletions
|
|
@ -0,0 +1,17 @@
|
|||
package de.kosit.validationtool.cmd;
|
||||
|
||||
/**
|
||||
* Strategy for creating names. This is used for generating the report result name.
|
||||
*
|
||||
* @author Andreas Penski
|
||||
*/
|
||||
public interface NamingStrategy {
|
||||
|
||||
/**
|
||||
* Create a name based on a base name
|
||||
*
|
||||
* @param base the base name
|
||||
* @return the generated name
|
||||
*/
|
||||
String createName(String base);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue