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

com.jukusoft.vertx.serializer.test.TestObject1 Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package com.jukusoft.vertx.serializer.test;

import com.jukusoft.vertx.serializer.SerializableObject;
import com.jukusoft.vertx.serializer.annotations.*;

@MessageType(type = 0x02, extendedType = 0x01)
@ProtocolVersion(1)
public class TestObject1 implements SerializableObject {

    @SInteger
    public int test = 1;

    @SString(maxCharacters = 30)
    public String testStr = "test_";

    @DummyAnnotation
    public String testStr1 = "test";

    public TestObject1 () {
        //
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy