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

com.ats.AmfTools Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
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