Package net.hasor.rsf.serialize

Examples of net.hasor.rsf.serialize.Encoder


        return decoder.decode(this.returnData);
    }
    /**设置要返回的值*/
    public void setReturnData(Object data, SerializeFactory serializeFactory) throws Throwable {
        String codeName = this.getSerializeType();
        Encoder encoder = serializeFactory.getEncoder(codeName);
        //
        this.returnData = encoder.encode(data);
    }
View Full Code Here

TOP

Related Classes of net.hasor.rsf.serialize.Encoder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.