com.bagri.server.hazelcast.serialize.PortableFactoryImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bagri-server-hazelcast Show documentation
Show all versions of bagri-server-hazelcast Show documentation
Bagri DB Cache: Hazelcast implementation
The newest version!
package com.bagri.server.hazelcast.serialize;
import com.hazelcast.nio.serialization.Portable;
public class PortableFactoryImpl extends com.bagri.client.hazelcast.serialize.PortableFactoryImpl {
@Override
public Portable create(int classId) {
if (classId == cli_XDMCredentials) {
return new SecureCredentials();
}
return super.create(classId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy