diff options
author | Vitaly Takmazov | 2021-08-24 18:24:33 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2021-08-24 18:51:29 +0300 |
commit | 72aaf2417ecb10696538ab0e0762e732328c64ac (patch) | |
tree | 63e093fe5880c94662dc994a9a0b3c8a1d378558 /src/main/java/com/juick/service/activities | |
parent | 8238713c2e37cf58656bb02aa05595ca0bcd87f2 (diff) |
ActivityPub: add DirectMessageEvent, fix Undo event
Diffstat (limited to 'src/main/java/com/juick/service/activities')
-rw-r--r-- | src/main/java/com/juick/service/activities/DirectMessageEvent.java | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/main/java/com/juick/service/activities/DirectMessageEvent.java b/src/main/java/com/juick/service/activities/DirectMessageEvent.java new file mode 100644 index 00000000..7c396c91 --- /dev/null +++ b/src/main/java/com/juick/service/activities/DirectMessageEvent.java @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2008-2021, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +package com.juick.service.activities; + +import com.juick.www.api.activity.model.objects.Note; +import org.springframework.context.ApplicationEvent; + +public class DirectMessageEvent extends ApplicationEvent { + private final Note message; + /** + * Create a new ApplicationEvent. + * + * @param source the object on which the event initially occurred (never {@code null}) + */ + public DirectMessageEvent(Object source, Note message) { + super(source); + this.message = message; + } + + public Note getMessage() { + return message; + } +} |