Uses of Class
org.saidone.model.NodeWrapper
Packages that use NodeWrapper
-
Uses of NodeWrapper in org.saidone.repository
Methods in org.saidone.repository with type parameters of type NodeWrapperModifier and TypeMethodDescription<S extends NodeWrapper>
longMongoNodeRepositoryImpl.count
(@NonNull org.springframework.data.domain.Example<S> example) <S extends NodeWrapper>
booleanMongoNodeRepositoryImpl.exists
(@NonNull org.springframework.data.domain.Example<S> example) <S extends NodeWrapper>
@NonNull List<S> MongoNodeRepositoryImpl.findAll
(@NonNull org.springframework.data.domain.Example<S> example) <S extends NodeWrapper>
@NonNull org.springframework.data.domain.Page<S> MongoNodeRepositoryImpl.findAll
(@NonNull org.springframework.data.domain.Example<S> example, @NonNull org.springframework.data.domain.Pageable pageable) <S extends NodeWrapper>
@NonNull List<S> MongoNodeRepositoryImpl.findAll
(@NonNull org.springframework.data.domain.Example<S> example, @NonNull org.springframework.data.domain.Sort sort) <S extends NodeWrapper,
R>
RMongoNodeRepositoryImpl.findBy
(@NonNull org.springframework.data.domain.Example<S> example, @NonNull Function<org.springframework.data.repository.query.FluentQuery.FetchableFluentQuery<S>, R> queryFunction) <S extends NodeWrapper>
@NonNull Optional<S> MongoNodeRepositoryImpl.findOne
(@NonNull org.springframework.data.domain.Example<S> example) <S extends NodeWrapper>
@NonNull List<S> <S extends NodeWrapper>
SMongoNodeRepositoryImpl.insert
(S entity) <S extends NodeWrapper>
SEncryptedMongoNodeRepositoryImpl.save
(S entity) Saves the given node entity after encrypting its JSON content.<S extends NodeWrapper>
SMongoNodeRepositoryImpl.save
(S entity) <S extends NodeWrapper>
@NonNull List<S> Methods in org.saidone.repository that return types with arguments of type NodeWrapperModifier and TypeMethodDescription@NonNull List
<NodeWrapper> MongoNodeRepositoryImpl.findAll()
@NonNull org.springframework.data.domain.Page
<NodeWrapper> MongoNodeRepositoryImpl.findAll
(@NonNull org.springframework.data.domain.Pageable pageable) @NonNull List
<NodeWrapper> MongoNodeRepositoryImpl.findAll
(@NonNull org.springframework.data.domain.Sort sort) @NonNull List
<NodeWrapper> MongoNodeRepositoryImpl.findAllById
(@NonNull Iterable<String> ids) org.springframework.data.domain.Page
<NodeWrapper> EncryptedMongoNodeRepositoryImpl.findByArchiveDateRange
(Instant from, Instant to, org.springframework.data.domain.Pageable pageable) Retrieves node wrappers archived within the specified date range using pagination.org.springframework.data.domain.Page
<NodeWrapper> MongoNodeRepositoryImpl.findByArchiveDateRange
(Instant from, Instant to, org.springframework.data.domain.Pageable pageable) Retrieves node wrappers archived within the specified date range using pagination.@NonNull Optional
<NodeWrapper> Finds a node by its ID and decrypts its JSON content if it is encrypted.@NonNull Optional
<NodeWrapper> MongoNodeRepositoryImpl.findByKv
(int kv) Retrieves node wrappers by encryption key version.Retrieves node wrappers by notarization transaction ID.Methods in org.saidone.repository with parameters of type NodeWrapperModifier and TypeMethodDescriptionvoid
MongoNodeRepositoryImpl.delete
(@NonNull NodeWrapper entity) Method parameters in org.saidone.repository with type arguments of type NodeWrapperModifier and TypeMethodDescriptionvoid
MongoNodeRepositoryImpl.deleteAll
(@NonNull Iterable<? extends NodeWrapper> entities) -
Uses of NodeWrapper in org.saidone.service
Methods in org.saidone.service that return NodeWrapperModifier and TypeMethodDescriptionRetrieves the stored node wrapper by its identifier.Retrieves a node wrapper by its identifier.Methods in org.saidone.service that return types with arguments of type NodeWrapperModifier and TypeMethodDescriptionMongoNodeService.findAll()
Retrieves all stored node wrappers.NodeService.findAll()
Retrieves all stored node wrappers.org.springframework.data.domain.Page
<NodeWrapper> MongoNodeService.findByArchiveDateRange
(Instant from, Instant to, org.springframework.data.domain.Pageable pageable) Retrieves node wrappers archived within the specified date range using pagination.org.springframework.data.domain.Page
<NodeWrapper> NodeService.findByArchiveDateRange
(Instant from, Instant to, org.springframework.data.domain.Pageable pageable) Retrieves node wrappers archived within the specified date range using pagination.MongoNodeService.findByKv
(int kv) Retrieves all node wrappers associated with the specified encryption key version.NodeService.findByKv
(int kv) Retrieves all node wrappers associated with the specified encryption key version.Retrieves all node wrappers having the given notarization transaction ID.Retrieves all node wrappers having the given notarization transaction ID.Methods in org.saidone.service with parameters of type NodeWrapperModifier and TypeMethodDescriptionvoid
MongoNodeService.save
(NodeWrapper nodeWrapper) Persists the given wrapped node metadata.void
NodeService.save
(NodeWrapper node) Persists the given wrapped node metadata.