Package com.io7m.cardant.protocol.api
Interface CAProtocolMessageValidatorType<T,R>
- Type Parameters:
T- The type of core messagesR- The type of wire messages
- All Known Implementing Classes:
CAI1Validation,CAIUVEventUpdated,CAUVAttachment,CAUVAttachmentKey,CAUVAuditEvent,CAUVAuditSearchParameters,CAUVCommandAuditSearchBegin,CAUVCommandAuditSearchNext,CAUVCommandAuditSearchPrevious,CAUVCommandFileGet,CAUVCommandFilePut,CAUVCommandFileRemove,CAUVCommandFileSearchBegin,CAUVCommandFileSearchNext,CAUVCommandFileSearchPrevious,CAUVCommandItemAttachmentAdd,CAUVCommandItemAttachmentRemove,CAUVCommandItemCreate,CAUVCommandItemGet,CAUVCommandItemLocationsList,CAUVCommandItemMetadataPut,CAUVCommandItemMetadataRemove,CAUVCommandItemReposit,CAUVCommandItemSearchBegin,CAUVCommandItemSearchNext,CAUVCommandItemSearchPrevious,CAUVCommandItemSetName,CAUVCommandItemsRemove,CAUVCommandItemTypesAssign,CAUVCommandItemTypesRevoke,CAUVCommandLocationAttachmentAdd,CAUVCommandLocationAttachmentRemove,CAUVCommandLocationGet,CAUVCommandLocationList,CAUVCommandLocationMetadataPut,CAUVCommandLocationMetadataRemove,CAUVCommandLocationPut,CAUVCommandLocationTypesAssign,CAUVCommandLocationTypesRevoke,CAUVCommandLogin,CAUVCommandRolesAssign,CAUVCommandRolesGet,CAUVCommandRolesRevoke,CAUVCommandTypeDeclarationGet,CAUVCommandTypeDeclarationPut,CAUVCommandTypeDeclarationRemove,CAUVCommandTypeDeclarationSearchBegin,CAUVCommandTypeDeclarationSearchNext,CAUVCommandTypeDeclarationSearchPrevious,CAUVCommandTypeScalarGet,CAUVCommandTypeScalarPut,CAUVCommandTypeScalarRemove,CAUVCommandTypeScalarSearchBegin,CAUVCommandTypeScalarSearchNext,CAUVCommandTypeScalarSearchPrevious,CAUVComparisonsExact,CAUVComparisonsFuzzy,CAUVComparisonsSet,CAUVFile,CAUVFileColumn,CAUVFileColumnOrdering,CAUVFileSearchParameters,CAUVId,CAUVItem,CAUVItemColumn,CAUVItemColumnOrdering,CAUVItemLocation,CAUVItemLocationMatch,CAUVItemLocations,CAUVItemNameMatch,CAUVItemReposit,CAUVItemSearchParameters,CAUVItemSummary,CAUVItemTypeMatch,CAUVLocation,CAUVLocationSummaries,CAUVLocationSummary,CAUVMessage,CAUVMetadata,CAUVMetadataElementMatch,CAUVMetadataNameMatch,CAUVMetadataValueMatch,CAUVResponseAuditSearch,CAUVResponseBlame,CAUVResponseError,CAUVResponseFileGet,CAUVResponseFilePut,CAUVResponseFileRemove,CAUVResponseFileSearch,CAUVResponseItemAttachmentAdd,CAUVResponseItemAttachmentRemove,CAUVResponseItemCreate,CAUVResponseItemGet,CAUVResponseItemLocationList,CAUVResponseItemMetadataPut,CAUVResponseItemMetadataRemove,CAUVResponseItemReposit,CAUVResponseItemSearch,CAUVResponseItemSetName,CAUVResponseItemsRemove,CAUVResponseItemTypesAssign,CAUVResponseItemTypesRevoke,CAUVResponseLocationAttachmentAdd,CAUVResponseLocationAttachmentRemove,CAUVResponseLocationGet,CAUVResponseLocationList,CAUVResponseLocationMetadataPut,CAUVResponseLocationMetadataRemove,CAUVResponseLocationPut,CAUVResponseLocationTypesAssign,CAUVResponseLocationTypesRevoke,CAUVResponseLogin,CAUVResponseRolesAssign,CAUVResponseRolesGet,CAUVResponseRolesRevoke,CAUVResponseTypeDeclarationGet,CAUVResponseTypeDeclarationPut,CAUVResponseTypeDeclarationRemove,CAUVResponseTypeDeclarationSearch,CAUVResponseTypeScalarGet,CAUVResponseTypeScalarPut,CAUVResponseTypeScalarRemove,CAUVResponseTypeScalarSearch,CAUVSizeRange,CAUVStrings,CAUVTimeRange,CAUVTypeDeclaration,CAUVTypeDeclarationSearchParameters,CAUVTypeDeclarationSummary,CAUVTypeField,CAUVTypeScalar,CAUVTypeScalarSearchParameters
public interface CAProtocolMessageValidatorType<T,R>
The type of validators that convert between core messages and "wire"
(versioned) messages.
-
Method Summary
Modifier and TypeMethodDescriptionconvertFromWire(R message) Convert a wire message to a core message.convertToWire(T message) Convert a core message to a wire message.
-
Method Details
-
convertToWire
Convert a core message to a wire message.- Parameters:
message- The core message- Returns:
- The wire message
- Throws:
CAProtocolException- On errors
-
convertFromWire
Convert a wire message to a core message.- Parameters:
message- The wire message- Returns:
- The core message
- Throws:
CAProtocolException- On errors
-