Skip to content

Commit

Permalink
ONTOLOGY-224 -- Fix PublishOfferFailed and SuspendOfferFailed in Offe…
Browse files Browse the repository at this point in the history
…rManagement contract, update versions.
  • Loading branch information
mjacunski committed Apr 10, 2012
1 parent d6948ac commit 24628a9
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions offermanagement/src/main/avro/OfferManagementCapability.avdl
Expand Up @@ -16,7 +16,7 @@ protocol OfferManagementCapability {
}

@topic("/offer/create")
@version("1.0.0")
@version("1.1.0")
record CreateOffer
{
array<com.x.ocl.Offer> offers;
Expand All @@ -37,7 +37,7 @@ protocol OfferManagementCapability {
}

@topic("/offer/createFailed")
@version("1.0.0")
@version("1.1.0")
record CreateOfferFailed
{
array<OfferError> errors;
Expand All @@ -61,11 +61,10 @@ protocol OfferManagementCapability {
}

@topic("/offer/publishFailed")
@version("1.0.0")
@version("1.1.0")
record PublishOfferFailed
{
array<string> offerIds;
array<com.x.ocl.Error> errors;
array<OfferIdError> errors;
}

@topic("/offer/suspend")
Expand All @@ -83,11 +82,10 @@ protocol OfferManagementCapability {
}

@topic("/offer/suspendFailed")
@version("1.0.0")
@version("1.1.0")
record SuspendOfferFailed
{
array<string> offerIds;
array<com.x.ocl.Error> errors;
array<OfferIdError> errors;
}

@topic("/offer/search")
Expand Down

0 comments on commit 24628a9

Please sign in to comment.