
com.activitystream.core.model.validation.MessageProblem 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.core.model.validation;
import com.fasterxml.jackson.annotation.JsonProperty;
public class MessageProblem {
private String message;
public MessageProblem(String message) {
this.message = message;
}
@JsonProperty
public String getMessage() {
return message;
}
@Override
public String toString() {
return getClass().getName() + "{" +
"message='" + message + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy