Class SerializationStrategyDefaultImpl
- java.lang.Object
-
- de.hybris.platform.servicelayer.model.strategies.SerializationStrategyDefaultImpl
-
- All Implemented Interfaces:
SerializationStrategy,java.io.Serializable
@Deprecated public class SerializationStrategyDefaultImpl extends java.lang.Object implements SerializationStrategy
Deprecated.since 6.2.0 - Serializing full models isn't recommended any more. New default strategy isSerializationStrategyLeanImpl!- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SerializationStrategyDefaultImpl()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.ObjectreadResolve(AbstractItemModel aim)Deprecated.Called when wanting to deserialize the AbstractItemModel aimjava.lang.ObjectwriteReplace(AbstractItemModel aim)Deprecated.Called when serializing the AbstractItemModel aim
-
-
-
Method Detail
-
readResolve
public java.lang.Object readResolve(AbstractItemModel aim) throws java.io.ObjectStreamException
Deprecated.Description copied from interface:SerializationStrategyCalled when wanting to deserialize the AbstractItemModel aim- Specified by:
readResolvein interfaceSerializationStrategy- Parameters:
aim- the AbstractItemModel to deserialize- Returns:
- The (possibly different) object that will be deserialized
- Throws:
java.io.ObjectStreamException
-
writeReplace
public java.lang.Object writeReplace(AbstractItemModel aim) throws java.io.ObjectStreamException
Deprecated.Description copied from interface:SerializationStrategyCalled when serializing the AbstractItemModel aim- Specified by:
writeReplacein interfaceSerializationStrategy- Parameters:
aim- the AbstractItemModel to serialize- Returns:
- The (possibly different) object that will be serialized
- Throws:
java.io.ObjectStreamException
-
-