com.alachisoft.ncache.serialization.standard.io.surrogates.VersionCompatibleXExternalizableSerializationSurrogate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-serialization Show documentation
Show all versions of nc-serialization Show documentation
Internal package of Alachisoft.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.alachisoft.ncache.serialization.standard.io.surrogates;
/**
* @author usama_tariq
*/
public class VersionCompatibleXExternalizableSerializationSurrogate extends XExternalizableSerializationSurrogate {
public VersionCompatibleXExternalizableSerializationSurrogate(Class type) {
super(type);
}
@Override
public boolean isVersionCompatible() {
return true;
}
}