Skip to content

Commit

Permalink
#64 Prepare configurator
Browse files Browse the repository at this point in the history
  • Loading branch information
dvoraka committed Mar 29, 2019
1 parent 2d860f8 commit a306bfd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions builder/src/main/java/dvoraka/archbuilder/BuilderHelper.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package dvoraka.archbuilder;

public class BuilderHelper {

private final BuilderProperties properties;


public BuilderHelper(BuilderProperties properties) {
this.properties = properties;
}

public String buildServiceName(String serviceName) {
return serviceName + "Service";
}
}

0 comments on commit a306bfd

Please sign in to comment.