org.wildfly.clustering.marshalling.jboss.ExternalizerProvider Maven / Gradle / Ivy
The newest version!
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.clustering.marshalling.jboss;
import org.jboss.marshalling.Externalizer;
/**
* Service provider interface for contributed externalizers.
* @author Paul Ferraro
*/
public interface ExternalizerProvider {
Class> getType();
Externalizer getExternalizer();
}