com.ats.AmfTools Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amf Show documentation
Show all versions of amf Show documentation
Amf deserializer used by ats-core component to share data
package com.ats;
import java.io.IOException;
import java.io.InputStream;
import com.exadel.flamingo.flex.messaging.amf.io.AMF3Deserializer;
public class AmfTools {
public static Object deserialize(InputStream in) throws IOException {
final AMF3Deserializer amf3 = new AMF3Deserializer(in);
final Object result = amf3.readObject();
amf3.close();
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy