li.strolch.search.ActivitySearchResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agent Show documentation
Show all versions of agent Show documentation
Strolch Agent which is the runtime for Strolch
The newest version!
package li.strolch.search;
import li.strolch.model.activity.Activity;
import java.util.stream.Stream;
public class ActivitySearchResult extends RootElementSearchResult {
public ActivitySearchResult(Stream stream) {
super(stream);
}
}