Interface RecipeBatchAdminSession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession, RecipeAdminSession
This session creates, updates, and deletes Recipes in bulk. The
data for create and update is provided by the consumer via the form
object. OsidForms are requested for each create or update and may
not be reused.
Create and update operations differ in their usage. To create a
Recipe , a RecipeForm is requested using
getRecipeFormsForCreate() specifying the desired record Types or
none if no record Types are needed. Each of the returned
RecipeForms will indicate that it is to be used with a create operation
and can be used to examine metdata or validate data prior to creation.
Once a RecipeForm is submiited to a create operation, it cannot be
reused with another create operation unless the first operation was
unsuccessful. Each RecipeForm corresponds to an attempted
transaction.
The RecipeForms returned from
getRecipeFormsForCreate() may be linked to the originating request
through the peer Ids of the RecipeForm . In the case where
there may be duplicates, any RecipeForm of the same peer
Ids may be used for a create operation.
Once a batch of RecipeForms are submitted for create, a
CreateResponse is returned for each RecipeForm , although the
ordering is not defined. Only errors that pertain to the entire create
operation are returned from createRecipes() , errors specific to
an individual RecipeForm are indicated in the corresponding
CreateResponse . CreateResponses may be linked to the originating
RecipeForm through the RecipeForm Id .
For updates, RecipeForms are requested to the Recipe
Id that is to be updated using getRecipeFormsForUpdate()
where the reference Id in the RecipeForm may be used to
link the request. Similarly, the RecipeForm has metadata about the
data that can be updated and it can perform validation before submitting
the update. The RecipeForm can only be used once for a successful
update and cannot be reused.
Once a batch of RecipeForms are submitted for update, an
UpdateResponse is returned for each RecipeForm , although
the ordering is not defined. Only errors that pertain to the entire update
operation are returned from updateRecipes() , errors specific to
an individual RecipeForm are indicated in the corresponding
UpdateResponse . UpdateResponses may be linked to the originating
RecipeForm through the RecipeForm Id .
The delete operations delete Recipes in bulk. To unmap a
Recipe from the current Cookbook , the
RecipeCookbookAssignmentSession should be used. These delete operations
attempt to remove the Recipe itself thus removing it from all
known Cookbook catalogs. Bulk delete operations return the results
in DeleteResponses .
-
Method Summary
Modifier and TypeMethodDescriptionaliasRecipes(AliasRequestList aliasRequests) Adds anIdto aRecipefor the purpose of creating compatibility.createRecipes(RecipeBatchFormList recipeForms) Creates a new set ofRecipes.Deletes allRecipesin thisCookbook.deleteRecipes(IdList recipeIds) Deletes recipes for the givenIds.getRecipeFormsForCreate(long number, Type[] recipeRecordTypes) Gets the recipe forms for creating a bunch of new recipes.getRecipeFormsForUpdate(IdList recipeIds) Gets the recipe forms for updating an existing set of recipes.updateRecipes(RecipeBatchFormList recipeForms) Updates existing recipes.Methods inherited from interface OsidSession
closeMethods inherited from interface OsidSession
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactionsModifier and TypeMethodDescriptionGets the agent authenticated to this session.Gets theIdof the agent authenticated to this session.Gets the rate of the service clock.getDate()Gets the service date which may be the current date or the effective date in which this session exists.Gets the effective agent in use by this session.Gets theIdof the effective agent in use by this session.Gets theDisplayTextformatTypepreference in effect for this session.Gets the locale indicating the localization preferences in effect for this session.booleanTests if an agent is authenticated to this session.Starts a new transaction for this sesson.booleanTests for the availability of transactions.Methods inherited from interface RecipeAdminSession
aliasRecipe, canCreateRecipes, canCreateRecipeWithRecordTypes, canDeleteRecipes, canManageRecipeAliases, canUpdateRecipes, createRecipe, deleteRecipe, getCookbook, getCookbookId, getRecipeFormForCreate, getRecipeFormForUpdate, updateRecipeModifier and TypeMethodDescriptionvoidaliasRecipe(Id recipeId, Id aliasId) Adds anIdto aRecipefor the purpose of creating compatibility.booleanTests if this user can createRecipes.booleancanCreateRecipeWithRecordTypes(Type[] recipeRecordTypes) Tests if this user can create a singleRecipeusing the desired record types.booleanTests if this user can deleteRecipes.booleanTests if this user can manageIdaliases forRecipes.booleanTests if this user can updateRecipes.createRecipe(RecipeForm recipeForm) Creates a newRecipe.voiddeleteRecipe(Id recipeId) Deletes aRecipe.Gets theCookbookassociated with this session.Gets theCookbookIdassociated with this session.getRecipeFormForCreate(Type[] recipeRecordTypes) Gets the recipe form for creating new recipes.getRecipeFormForUpdate(Id recipeId) Gets the recipe form for updating an existing recipe.voidupdateRecipe(RecipeForm recipeForm) Updates an existing recipe.
-
Method Details
-
getRecipeFormsForCreate
RecipeBatchFormList getRecipeFormsForCreate(long number, Type[] recipeRecordTypes) throws OperationFailedException, PermissionDeniedException Gets the recipe forms for creating a bunch of new recipes.- Parameters:
number- the number of forms to retrieverecipeRecordTypes- array of recipe record types to be included in each create operation or an empty list if none- Returns:
- the recipe forms
- Throws:
NullArgumentException-recipeRecordTypesisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failureUnsupportedException- unable to request forms with given record types- Compliance:
mandatory- This method must be implemented.
-
createRecipes
CreateResponseList createRecipes(RecipeBatchFormList recipeForms) throws OperationFailedException, PermissionDeniedException Creates a new set ofRecipes. This method returns an error if the entire operation fails. Otherwise, the status of an individual create operation is indicated in theBatchCreateResponse.- Parameters:
recipeForms- the recipe forms- Returns:
- the create responses
- Throws:
NullArgumentException-recipeFormsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRecipeFormsForUpdate
RecipeBatchFormList getRecipeFormsForUpdate(IdList recipeIds) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the recipe forms for updating an existing set of recipes. A new recipe form should be requested for each update transaction.- Parameters:
recipeIds- theIdsof theRecipe- Returns:
- the recipe form
- Throws:
NotFoundException- arecipeIdis not foundNullArgumentException-recipeIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
updateRecipes
UpdateResponseList updateRecipes(RecipeBatchFormList recipeForms) throws OperationFailedException, PermissionDeniedException Updates existing recipes. This method returns an error if the entire operation fails. Otherwise, the status of an individual update operation is indicated in theBatchCreateResponse.- Parameters:
recipeForms- the form containing the elements to be updated- Returns:
- the update responses
- Throws:
NullArgumentException-recipeFormsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteAllRecipes
Deletes allRecipesin thisCookbook.- Returns:
- the delete responses
- Throws:
OperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteRecipes
DeleteResponseList deleteRecipes(IdList recipeIds) throws OperationFailedException, PermissionDeniedException Deletes recipes for the givenIds.- Parameters:
recipeIds- theIdsof the recipes to delete- Returns:
- the delete responses
- Throws:
NullArgumentException-recipeIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
aliasRecipes
AliasResponseList aliasRecipes(AliasRequestList aliasRequests) throws OperationFailedException, PermissionDeniedException Adds anIdto aRecipefor the purpose of creating compatibility. The primaryIdof theRecipeis determined by the provider. The newIdis an alias to the primaryId. If the alias is a pointer to another recipe, it is reassigned to the given recipeId.- Parameters:
aliasRequests- the alias requests- Returns:
- the alias responses
- Throws:
NullArgumentException-aliasRequestsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-