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

network.oxalis.as4.common.As4MessageProperty Maven / Gradle / Ivy

There is a newer version: 6.7.0
Show newest version
package network.oxalis.as4.common;

import lombok.EqualsAndHashCode;
import lombok.Value;

@Value
@EqualsAndHashCode
public class As4MessageProperty {

    String name;
    String type;
    String value;

    public As4MessageProperty(String name, String value) {
        this(name, null, value);
    }

    public As4MessageProperty(String name, String type, String value) {
        this.name = name;
        this.type = type;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy