
com.alibaba.dubbo.common.serialize.support.SerializableClassRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dubbo2 Show documentation
Show all versions of dubbo2 Show documentation
The all in one project of dubbo2
The newest version!
package com.alibaba.dubbo.common.serialize.support;
import java.util.LinkedHashSet;
import java.util.Set;
/**
* @author lishen
*/
public abstract class SerializableClassRegistry {
private static final Set registrations = new LinkedHashSet();
/**
* only supposed to be called at startup time
*/
public static void registerClass(Class clazz) {
registrations.add(clazz);
}
public static Set getRegisteredClasses() {
return registrations;
}
}