Skip to content

Commit

Permalink
Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
JanSchankin committed Nov 13, 2021
1 parent 3dc8724 commit f7f1d5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@
* <p>
* This annotation must be used in combination with @{@link UseSamplerFixture}.
* <p>
* The serialisation is done in two steps: First, the object may be converted to an abstract {@link de.ppi.deepsampler.persistence.model.PersistentBean}. This is done
* to omit type information in JSON-Files. Primitive types, arrays, {@link java.util.List}s and {@link java.util.Map}s are usually not converted to a
* {@link de.ppi.deepsampler.persistence.model.PersistentBean}. They are passed to the second step unchanged. The second step is the JSON-serialisation by Jackson.
* <p>
* It is possible to register some extensions to customize the serialisation using the annotations @{@link UseJsonSerializer}
* It is possible to register some extensions to customize the deserialization using the annotations @{@link UseJsonDeserializer}
* and @{@link UseBeanConverterExtension}.
*/
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,8 @@
* <p>
* This annotation must be used in combination with @{@link UseSamplerFixture}.
* <p>
* The deserialization is done in two steps: First, Jackson is used to deserialize the JSON-File. If the file contains
* {@link de.ppi.deepsampler.persistence.model.PersistentBean}s a second deserialization-step is run. The
* {@link de.ppi.deepsampler.persistence.model.PersistentBean} is an abstract model of a java Bean without any type
* information. The second step reconstructs the type information from the sampler by analysing the sampled api and
* recreates the original object from the {@link de.ppi.deepsampler.persistence.model.PersistentBean}
* <p>
* It is possible to register customisations of the deserialization-process using the annotations
* {@link UseJsonDeserializer} and @{@link UseBeanConverterExtension}.
* It is possible to register customisations of the serialization-process using the annotations
* {@link UseJsonSerializer} and @{@link UseBeanConverterExtension}.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import java.lang.annotation.Target;

/**
* DeepSampler's persistence runs through two steps. First Objects are converted to abstract {@link de.ppi.deepsampler.persistence.model.PersistentBean}s and second
* DeepSampler's persistence runs through two steps. First, Objects are converted to abstract {@link de.ppi.deepsampler.persistence.model.PersistentBean}s and second
* these beans are passed to Jackson, the actual Json-Serializer.
* DeepSampler is able to convert most objects to {@link de.ppi.deepsampler.persistence.model.PersistentBean}s out of the box, but sometimes objects need a special
* conversion. This can be done using custom {@link BeanConverterExtension}s.
Expand Down

0 comments on commit f7f1d5a

Please sign in to comment.