com.alachisoft.ncache.serialization.standard.DynamicSurrogate 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;
import com.alachisoft.ncache.serialization.core.io.NCacheObjectInput;
import com.alachisoft.ncache.serialization.core.io.NCacheObjectOutput;
import com.alachisoft.ncache.serialization.core.io.surrogates.*;
public class DynamicSurrogate extends SerializationSurrogateBase implements SerializationSurrogate, BuiltinSerializationSurrogate {
public DynamicSurrogate(Class obj) {
super(obj);
}
public void modify() {
}
public Object readObject(NCacheObjectInput input) throws NCacheInstantiationException, NCacheIOException, UnsupportedOperationException {
throw new UnsupportedOperationException("Not supported yet.");
}
public void writeObject(NCacheObjectOutput output, Object graph) throws NCacheIOException, UnsupportedOperationException {
throw new UnsupportedOperationException("Not supported yet.");
}
public void skipObject(NCacheObjectInput input) throws NCacheInstantiationException, NCacheIOException {
this.readObject(input);
}
}