Interface CollectionModelFactory
-
public interface CollectionModelFactoryA factory to create aCollectionModelinstance based on the given input that is evaluated during deserialization.- Since:
- 1.0.0
- Author:
- Ingo Griebsch
- See Also:
CollectionModel
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default org.springframework.hateoas.CollectionModel<?>create(@NonNull com.fasterxml.jackson.databind.JavaType type, @NonNull Iterable<org.springframework.hateoas.Link> links, @NonNull Iterable<Object> content, Map<String,Object> properties)Creates aCollectionModelbased on the given input.
-
-
-
Method Detail
-
create
default org.springframework.hateoas.CollectionModel<?> create(@NonNull @NonNull com.fasterxml.jackson.databind.JavaType type, @NonNull @NonNull Iterable<org.springframework.hateoas.Link> links, @NonNull @NonNull Iterable<Object> content, @Nullable Map<String,Object> properties)Creates aCollectionModelbased on the given input.The default implementation instantiates the concrete
CollectionModelbased on the assumption that theCollectionModel(Iterable, Iterable)constructor is accessible.- Parameters:
type- the type of the instance that should be created. Must be assignable toCollectionModel. Is never null.links- the links which should be used to instantiate themodel. Is never null.content- the objects which should be used to instantiate themodel. Is never null.properties- the properties which should be applied on the instantiatedmodel. Can be null.- Returns:
- the created
CollectionModelinstance.
-
-