Class SerializationStrategyDefaultImpl
- java.lang.Object
-
- de.hybris.platform.servicelayer.model.strategies.SerializationStrategyDefaultImpl
-
- All Implemented Interfaces:
SerializationStrategy,java.io.Serializable
@Deprecated(since="6.2.0", forRemoval=true) public class SerializationStrategyDefaultImpl extends java.lang.Object implements SerializationStrategyDeprecated, for removal: This API element is subject to removal in a future version.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, for removal: This API element is subject to removal in a future version.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.ObjectreadResolve(AbstractItemModel aim)Deprecated, for removal: This API element is subject to removal in a future version.Called when wanting to deserialize the AbstractItemModel aimjava.lang.ObjectwriteReplace(AbstractItemModel aim)Deprecated, for removal: This API element is subject to removal in a future version.Called when serializing the AbstractItemModel aim
-
-
-
Method Detail
-
readResolve
public java.lang.Object readResolve(AbstractItemModel aim) throws java.io.ObjectStreamException
Deprecated, for removal: This API element is subject to removal in a future version.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, for removal: This API element is subject to removal in a future version.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
-
-