1 2 3 4 5 6 7 8 9 10 11
package com.p4square.ccbapi.serializer; /** * A Serializer converts an object of type T to a payload suitable for CCB. */ public interface Serializer<T> { String encode(T obj); void encode(T obj, StringBuilder builder); }