com.activitystream.model.interfaces.VerifiableElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of as-sdk Show documentation
Show all versions of as-sdk Show documentation
AS-SDK is a java library to allow easy interoperability with Activity Stream.
package com.activitystream.model.interfaces;
import com.activitystream.model.validation.MessageProblem;
import com.activitystream.model.validation.MessageValidator;
public interface VerifiableElement extends LinkedElement {
void verify();
boolean isValid();
MessageValidator validator();
default void addProblem(MessageProblem messageProblem) {
validator().addProblem(messageProblem);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy