run.halo.app.search.event.HaloDocumentAddRequestEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
API of halo project, connecting by other projects.
The newest version!
package run.halo.app.search.event;
import org.springframework.context.ApplicationEvent;
import run.halo.app.plugin.SharedEvent;
import run.halo.app.search.HaloDocument;
@SharedEvent
public class HaloDocumentAddRequestEvent extends ApplicationEvent {
private final Iterable documents;
public HaloDocumentAddRequestEvent(Object source, Iterable documents) {
super(source);
this.documents = documents;
}
public Iterable getDocuments() {
return documents;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy