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

net.optionfactory.jma.message.AuthenticatedMessage Maven / Gradle / Ivy

The newest version!
package net.optionfactory.jma.message;

import net.optionfactory.jma.MessageAuthentication;

public class AuthenticatedMessage {

    @MessageAuthentication(mode = MessageAuthentication.Mode.AUTHENTICATED)
    public T value;

    public static  AuthenticatedMessage of(T value) {
        final AuthenticatedMessage message = new AuthenticatedMessage<>();
        message.value = value;
        return message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy