diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2021-11-05 09:34:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-05 09:34:01 -0700 |
commit | fb26fa078fc3299112108a682004f41e767d397b (patch) | |
tree | ef6d4bc4fa9f2b883dc7fc6512476281a0d1e45e /src/main/java/org/traccar/notification/NotificationMessage.java | |
parent | 54e0ed6aa3fb39c344a2aaf68eb0b03967e912ef (diff) | |
parent | c370aa660d216980a0c8f52ca856b4116ff5ca23 (diff) | |
download | trackermap-server-fb26fa078fc3299112108a682004f41e767d397b.tar.gz trackermap-server-fb26fa078fc3299112108a682004f41e767d397b.tar.bz2 trackermap-server-fb26fa078fc3299112108a682004f41e767d397b.zip |
Merge pull request #4763 from wkhaksar/push-notifications-title
Title for push notifications
Diffstat (limited to 'src/main/java/org/traccar/notification/NotificationMessage.java')
-rw-r--r-- | src/main/java/org/traccar/notification/NotificationMessage.java | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/notification/NotificationMessage.java b/src/main/java/org/traccar/notification/NotificationMessage.java new file mode 100644 index 000000000..0fb8d7654 --- /dev/null +++ b/src/main/java/org/traccar/notification/NotificationMessage.java @@ -0,0 +1,36 @@ +/* + * Copyright 2016 Anton Tananaev (anton@traccar.org) + * Copyright 2016 Andrey Kunitsyn (andrey@traccar.org) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.traccar.notification; + +public class NotificationMessage { + + private String subject; + private String body; + + public NotificationMessage(String subject, String body) { + this.subject = subject; + this.body = body; + } + + public String getSubject() { + return subject; + } + + public String getBody() { + return body; + } +} |