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

org.atmosphere.gwt20.server.ServerSerializerFactory Maven / Gradle / Ivy

There is a newer version: 2.6.5
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package org.atmosphere.gwt20.server;

import java.util.Iterator;
import java.util.ServiceLoader;

/**
 * @author Havelaar
 */
public class ServerSerializerFactory {

    private static ServiceLoader loader = ServiceLoader.load(ServerSerializer.class);

    public static Iterator getSerializers() {
        return loader.iterator();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy