com.jn.agileway.codec.serialization.SchemaedStruct Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agileway-codec Show documentation
Show all versions of agileway-codec Show documentation
Provide an unified codec API for hession, kryo, protostuff, fst, fes, xson, cbor, jackson, json, etc....
package com.jn.agileway.codec.serialization;
/**
* name is the class
*/
public class SchemaedStruct {
private String name; // class name
private byte[] value;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public byte[] getValue() {
return value;
}
public void setValue(byte[] value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy