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

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy