Package dk.gtz.graphedit.serialization
Class JacksonModelSerializer
java.lang.Object
dk.gtz.graphedit.serialization.JacksonModelSerializer
- All Implemented Interfaces:
IModelSerializer
Implementation of
IModelSerializer
using the jackson xml serializer-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addClassLoader
(ClassLoader loader) Add another classloader to the serializer.Desertialize a model editor settings object from a filedeserializeEditorSettings
(String serializedContent) Desertialize a model editor settings object from a string valuedeserializeProject
(File file) Desertialize a model project object from a filedeserializeProject
(String serializedContent) Desertialize a model project object from a string valueDesertialize a model project resource object from a filedeserializeProjectResource
(String serializedContent) Desertialize a model project resource object from a string valueGet the preferred file extension for this serializer.Get a list of supported content types.Serialize a model edge to a string valueserialize
(ModelEditorSettings settings) Serialize a model editor settings object to a string valueserialize
(ModelProject model) Serialize a model project object to a string valueserialize
(ModelProjectResource model) Serialize a model project resource object to a string valueserialize
(ModelVertex vertex) Serialize a model vertex to a string value
-
Constructor Details
-
JacksonModelSerializer
public JacksonModelSerializer()Construct a new instance
-
-
Method Details
-
getPreferedFileExtension
Description copied from interface:IModelSerializer
Get the preferred file extension for this serializer. e.g. ".json"- Specified by:
getPreferedFileExtension
in interfaceIModelSerializer
- Returns:
- A string representing the preferred file extension
-
addClassLoader
Description copied from interface:IModelSerializer
Add another classloader to the serializer. This is useful when creating plugins with non-core model objects- Specified by:
addClassLoader
in interfaceIModelSerializer
- Parameters:
loader
- The additional loader to use when resolving classes
-
serialize
Description copied from interface:IModelSerializer
Serialize a model vertex to a string value- Specified by:
serialize
in interfaceIModelSerializer
- Parameters:
vertex
- The model vertex to serialize- Returns:
- A serialized string representing the provided vertex
- Throws:
SerializationException
- if something went wrong during serialization
-
serialize
Description copied from interface:IModelSerializer
Serialize a model edge to a string value- Specified by:
serialize
in interfaceIModelSerializer
- Parameters:
edge
- The model edge to serialize- Returns:
- A serialized string representing the provided edge
- Throws:
SerializationException
- if something went wrong during serialization
-
serialize
Description copied from interface:IModelSerializer
Serialize a model project object to a string value- Specified by:
serialize
in interfaceIModelSerializer
- Parameters:
model
- The model project to serialize- Returns:
- A serialized string representing the provided model
- Throws:
SerializationException
- if something went wrong during serialization
-
serialize
Description copied from interface:IModelSerializer
Serialize a model project resource object to a string value- Specified by:
serialize
in interfaceIModelSerializer
- Parameters:
model
- The model project resource to serialize- Returns:
- A serialized string representing the provided model
- Throws:
SerializationException
- if something went wrong during serialization
-
deserializeProjectResource
public ModelProjectResource deserializeProjectResource(String serializedContent) throws SerializationException Description copied from interface:IModelSerializer
Desertialize a model project resource object from a string value- Specified by:
deserializeProjectResource
in interfaceIModelSerializer
- Parameters:
serializedContent
- A string of content to deserialize- Returns:
- A new
ModelProjectResource
instance based on the serialized content - Throws:
SerializationException
- if something went wrong during deserialization
-
deserializeProjectResource
public ModelProjectResource deserializeProjectResource(File file) throws SerializationException, IOException Description copied from interface:IModelSerializer
Desertialize a model project resource object from a file- Specified by:
deserializeProjectResource
in interfaceIModelSerializer
- Parameters:
file
- A file handle containing serialized content- Returns:
- A new
ModelProjectResource
instance based on the serialized content of the provided file - Throws:
SerializationException
- if something went wrong during deserializationIOException
- if reading the file failed
-
deserializeProject
Description copied from interface:IModelSerializer
Desertialize a model project object from a string value- Specified by:
deserializeProject
in interfaceIModelSerializer
- Parameters:
serializedContent
- A string of content to deserialize- Returns:
- A new
ModelProject
instance based on the serialized content - Throws:
SerializationException
- if something went wrong during deserialization
-
deserializeProject
Description copied from interface:IModelSerializer
Desertialize a model project object from a file- Specified by:
deserializeProject
in interfaceIModelSerializer
- Parameters:
file
- A file handle containing serialized content- Returns:
- A new
ModelProject
instance based on the serialized content of the provided file - Throws:
SerializationException
- if something went wrong during deserializationIOException
- if reading the file failed
-
getSupportedContentTypes
Description copied from interface:IModelSerializer
Get a list of supported content types. These are typically in the MIME content format- Specified by:
getSupportedContentTypes
in interfaceIModelSerializer
- Returns:
- A list of types that this serializer supports
-
serialize
Description copied from interface:IModelSerializer
Serialize a model editor settings object to a string value- Specified by:
serialize
in interfaceIModelSerializer
- Parameters:
settings
- The model editor settings to serialize- Returns:
- A serialized string representing the provided model
- Throws:
SerializationException
- if something went wrong during serialization
-
deserializeEditorSettings
public ModelEditorSettings deserializeEditorSettings(String serializedContent) throws SerializationException Description copied from interface:IModelSerializer
Desertialize a model editor settings object from a string value- Specified by:
deserializeEditorSettings
in interfaceIModelSerializer
- Parameters:
serializedContent
- A string of content to deserialize- Returns:
- A new
ModelEditorSettings
instance based on the serialized content - Throws:
SerializationException
- if something went wrong during deserialization
-
deserializeEditorSettings
public ModelEditorSettings deserializeEditorSettings(File file) throws SerializationException, IOException Description copied from interface:IModelSerializer
Desertialize a model editor settings object from a file- Specified by:
deserializeEditorSettings
in interfaceIModelSerializer
- Parameters:
file
- A file handle containing serialized content- Returns:
- A new
ModelEditorSettings
instance based on the serialized content of the provided file - Throws:
SerializationException
- if something went wrong during deserializationIOException
- if reading the file failed
-