From 72aaf2417ecb10696538ab0e0762e732328c64ac Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Tue, 24 Aug 2021 18:24:33 +0300 Subject: ActivityPub: add DirectMessageEvent, fix Undo event --- .../service/activities/DirectMessageEvent.java | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/main/java/com/juick/service/activities/DirectMessageEvent.java (limited to 'src/main/java/com/juick/service/activities') 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 . + */ + +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; + } +} -- cgit v1.2.3