Interface ActivityPubStoreRepository
public interface ActivityPubStoreRepository
Manages multiple
ActivityPubStore
by there name.-
Method Summary
Modifier and TypeMethodDescriptioncreateActivityPubStore
(Actor storeOwner) Creates an emptyActivityPubStore
.findActivityPubStore
(Actor actor) Finds aActivityPubStore
.Finds the publicActivityPubStore
.void
shutdown()
Releases the resources of this store
-
Method Details
-
findActivityPubStore
Finds aActivityPubStore
.- Parameters:
actor
-- Returns:
- The store for the passed actor.
-
findPublicActivityPubStore
PublicActorStore findPublicActivityPubStore()Finds the publicActivityPubStore
.- Returns:
- the public
ActivityPubStore
.
-
createActivityPubStore
Creates an emptyActivityPubStore
.- Parameters:
storeOwner
-- Returns:
- The created store for the passed storeOwner.
-
createPublicActivityPubStore
ActivityPubStore createPublicActivityPubStore() -
shutdown
void shutdown()Releases the resources of this store
-