aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/notification/NotificationFormatter.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/traccar/notification/NotificationFormatter.java')
-rw-r--r--src/org/traccar/notification/NotificationFormatter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/notification/NotificationFormatter.java b/src/org/traccar/notification/NotificationFormatter.java
index 0f723a5e1..96337ecaa 100644
--- a/src/org/traccar/notification/NotificationFormatter.java
+++ b/src/org/traccar/notification/NotificationFormatter.java
@@ -37,7 +37,7 @@ public final class NotificationFormatter {
private NotificationFormatter() {
}
- private static VelocityContext prepareContext(long userId, Event event, Position position) {
+ public static VelocityContext prepareContext(long userId, Event event, Position position) {
Device device = Context.getIdentityManager().getDeviceById(event.getDeviceId());
VelocityContext velocityContext = new VelocityContext();
@@ -58,7 +58,7 @@ public final class NotificationFormatter {
return velocityContext;
}
- private static Template getTemplate(Event event, String path) {
+ public static Template getTemplate(Event event, String path) {
Template template;
try {
template = Context.getVelocityEngine().getTemplate(path + event.getType() + ".vm",