All Downloads are FREE. Search and download functionalities are using the official Maven repository.

run.halo.app.event.post.PostDeletedEvent Maven / Gradle / Ivy

The newest version!
package run.halo.app.event.post;

import run.halo.app.core.extension.content.Post;
import run.halo.app.plugin.SharedEvent;

@SharedEvent
public class PostDeletedEvent extends PostEvent {

    private final Post post;

    public PostDeletedEvent(Object source, Post post) {
        super(source, post.getMetadata().getName());
        this.post = post;
    }

    /**
     * Get original post.
     *
     * @return original post.
     */
    public Post getPost() {
        return post;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy