| | |
| | | |
| | | public abstract class Configuration { |
| | | |
| | | protected static String BASE_URL; |
| | | protected static String API_URL; |
| | | protected static String STATIC_URL; |
| | | protected static String staticPath; |
| | | protected static String templatePath; |
| | |
| | | public Configuration() { |
| | | } |
| | | |
| | | public Configuration(String templatePath, String staticPath, String outputPath, String baseUrl, String staticUrl) { |
| | | public Configuration(String templatePath, String staticPath, String outputPath, String apiUrl, String staticUrl) { |
| | | Configuration.staticPath = staticPath; |
| | | Configuration.templatePath = templatePath; |
| | | Configuration.outputPath = outputPath; |
| | | Configuration.BASE_URL = baseUrl; |
| | | Configuration.API_URL = apiUrl; |
| | | Configuration.STATIC_URL = staticUrl; |
| | | } |
| | | |