Interface ParameterQueryRemote
-
- All Superinterfaces:
PluginControl
- All Known Subinterfaces:
ParameterQueryLocal
public interface ParameterQueryRemote extends PluginControl
Remote interface for the parameter query plugin. Provides methods to query by document parameter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<Bucket>getEntityBucketsByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context)java.util.List<Bucket>getEntityChildBucketsByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context)java.util.List<Bucket>getEntityCordedBucketsByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context)java.util.List<KeyValue>getEntityKeyValuesByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context)java.util.List<MediaAsset>getEntityMediaAssetsByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context)java.util.List<Price>getEntityPricesByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context)java.util.List<Text>getEntityTextsByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context)-
Methods inherited from interface com.priint.pubserver.plugin.interfaces.PluginControl
afterCreateConfigurations, afterDeleteConfigurations, afterUpdateConfigurations, createConfiguration, deleteConfigurations, initInstance, loadServerConfig, ping, updateConfigurations, validateConfigurations
-
-
-
-
Method Detail
-
getEntityBucketsByDocumentParameter
java.util.List<Bucket> getEntityBucketsByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context) throws PubServerException
- Parameters:
sessionId- session Ididentifier- identifier of pubserver method parameterresultEntityId- filter the result by this entitycontext- context of the entity- Returns:
- list of buckets
- Throws:
PubServerException- See Also:
PubServerMethodParameter
-
getEntityChildBucketsByDocumentParameter
java.util.List<Bucket> getEntityChildBucketsByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context) throws PubServerException
- Parameters:
sessionId- session Ididentifier- identifier of pubserver method parameterresultEntityId- filter the result by this entitycontext- context of the entity- Returns:
- list of child buckets
- Throws:
PubServerException- See Also:
PubServerMethodParameter
-
getEntityCordedBucketsByDocumentParameter
java.util.List<Bucket> getEntityCordedBucketsByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context) throws PubServerException
- Parameters:
sessionId- session Ididentifier- identifier of pubserver method parameterresultEntityId- filter the result by this entitycontext- context of the entity- Returns:
- list of corded buckets
- Throws:
PubServerException- See Also:
PubServerMethodParameter
-
getEntityKeyValuesByDocumentParameter
java.util.List<KeyValue> getEntityKeyValuesByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context) throws PubServerException
- Parameters:
sessionId- session Ididentifier- identifier of pubserver method parameterresultEntityId- filter the result by this entitycontext- context of the entity- Returns:
- list of key values
- Throws:
PubServerException- See Also:
PubServerMethodParameter
-
getEntityMediaAssetsByDocumentParameter
java.util.List<MediaAsset> getEntityMediaAssetsByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context) throws PubServerException
- Parameters:
sessionId- session Ididentifier- identifier of pubserver method parameterresultEntityId- filter the result by this entitycontext- context of the entity- Returns:
- list of media assets
- Throws:
PubServerException- See Also:
PubServerMethodParameter
-
getEntityPricesByDocumentParameter
java.util.List<Price> getEntityPricesByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context) throws PubServerException
- Parameters:
sessionId- session Ididentifier- identifier of pubserver method parameterresultEntityId- filter the result by this entitycontext- context of the entity- Returns:
- list of prices
- Throws:
PubServerException- See Also:
PubServerMethodParameter
-
getEntityTextsByDocumentParameter
java.util.List<Text> getEntityTextsByDocumentParameter(java.lang.String sessionId, java.lang.String identifier, java.lang.String resultEntityId, Context context) throws PubServerException
- Parameters:
sessionId- session Ididentifier- identifier of pubserver method parameterresultEntityId- filter the result by this entitycontext- context of the entity- Returns:
- list of texts
- Throws:
PubServerException- See Also:
PubServerMethodParameter
-
-