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

com.activitystream.core.model.validation.MessageProblem Maven / Gradle / Ivy

Go to download

AS-SDK is a java library to allow easy interoperability with Activity Stream.

There is a newer version: 0.1.25
Show newest version
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