Class GetByUUIDQueryTransformer<T extends GetByUuidQuery>
java.lang.Object
org.openehealth.ipf.commons.ihe.xds.core.transform.requests.query.GetByUUIDQueryTransformer<T>
- Type Parameters:
T
- type of the query.
- Direct Known Subclasses:
GetAssociationsQueryTransformer
,GetDocumentsAndAssociationsQueryTransformer
,GetDocumentsQueryTransformer
,GetFoldersQueryTransformer
,GetSubmissionSetsQueryTransformer
,SubscriptionForFolderQueryTransformer
Base class of transformers for
GetByUuidQuery
.- Author:
- Jens Riemschneider
-
Constructor Summary
ModifierConstructorDescriptionprotected
GetByUUIDQueryTransformer
(QueryParameter uuidParam) Constructs the transformer. -
Method Summary
Modifier and TypeMethodDescriptionvoid
fromEbXML
(T query, EbXMLAdhocQueryRequest<AdhocQueryRequest> ebXML) Transforms the ebXML representation of a query into a query object.protected void
fromEbXML
(T query, QuerySlotHelper slots) Transforms the ebXML representation of a query into a query object.void
toEbXML
(T query, EbXMLAdhocQueryRequest<AdhocQueryRequest> ebXML) Transforms the query into its ebXML representation.protected void
toEbXML
(T query, QuerySlotHelper slots) Transforms the query into its ebXML representation.
-
Constructor Details
-
GetByUUIDQueryTransformer
Constructs the transformer.- Parameters:
uuidParam
- the parameter name of the UUID parameter.
-
-
Method Details
-
toEbXML
Transforms the query into its ebXML representation.Does not perform any transformation if one of the parameters is
null
.- Parameters:
query
- the query. Can benull
.slots
- the ebXML representation. Can benull
.
-
fromEbXML
Transforms the ebXML representation of a query into a query object.Does not perform any transformation if one of the parameters is
null
.- Parameters:
query
- the query. Can benull
.slots
- the ebXML representation. Can benull
.
-
toEbXML
Transforms the query into its ebXML representation.Does not perform any transformation if one of the parameters is
null
.- Parameters:
query
- the query. Can benull
.ebXML
- the ebXML representation. Can benull
.
-
fromEbXML
Transforms the ebXML representation of a query into a query object.Does not perform any transformation if one of the parameters is
null
.- Parameters:
query
- the query. Can benull
.ebXML
- the ebXML representation. Can benull
.
-