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

io.apicurio.registry.protobuf.ProtobufDifference Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
package io.apicurio.registry.protobuf;

import lombok.EqualsAndHashCode;
import lombok.ToString;

@EqualsAndHashCode
@ToString
public class ProtobufDifference {

    private final String message;

    public static ProtobufDifference from(String message) {
        return new ProtobufDifference(message);
    }

    public ProtobufDifference(String message) {
        this.message = message;
    }

    public String getMessage() {
        return this.message;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy