Resolve "Make report filenames customizable"

This commit is contained in:
Andreas Penski 2020-07-29 13:03:06 +00:00
parent 592a1e87da
commit 3f361bf48b
7 changed files with 104 additions and 9 deletions

View file

@ -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);
}