Skip to content

Commit

Permalink
#1 fix when merging thumbnail support
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-conway committed Feb 26, 2021
1 parent 7f37f2f commit 9e502ba
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 52 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/* Copyright (c) 2018, University of North Carolina at Chapel Hill */
/* Copyright (c) 2015-2017, Dell EMC */


/* Copyright (c) 2018, University of North Carolina at Chapel Hill */
/* Copyright (c) 2015-2017, Dell EMC */

/**
*
Expand All @@ -24,19 +22,13 @@ public interface SpecQueryService {
/**
* Searches data objects or collections by metadata.
*
* @param metadataSearch
* list of metadata criteria to apply the search
* @param zone
* zone to be looking for collections and data objects
* @param searchAgainstColls
* flag set to true when looking for collections and set to false
* when looking for data objects
* @param pageContext
* pagination context
* @param offset
* offset for pagination
* @param limit
* max number of items shown in a page
* @param metadataSearch list of metadata criteria to apply the search
* @param zone zone to be looking for collections and data objects
* @param searchAgainstColls flag set to true when looking for collections and
* set to false when looking for data objects
* @param pageContext pagination context
* @param offset offset for pagination
* @param limit max number of items shown in a page
* @return Query result set from a metadata search
* @throws DataGridConnectionRefusedException
* @throws JargonException
Expand All @@ -48,19 +40,14 @@ public SpecificQueryResultSet searchByMetadata(List<DataGridMetadataSearch> meta
/**
* Searches data objects or collections by file properties.
*
* @param metadataSearch
* list of file properties criteria to apply the search
* @param zone
* zone to be looking for collections and data objects
* @param searchAgainstColls
* flag set to true when looking for collections and set to false
* when looking for data objects
* @param pageContext
* pagination context
* @param offset
* offset for pagination
* @param limit
* max number of items shown in a page
* @param metadataSearch list of file properties criteria to apply the
* search
* @param zone zone to be looking for collections and data objects
* @param searchAgainstColls flag set to true when looking for collections and
* set to false when looking for data objects
* @param pageContext pagination context
* @param offset offset for pagination
* @param limit max number of items shown in a page
* @return Query result set from a file properties search
* @throws DataGridConnectionRefusedException
* @throws JargonException
Expand All @@ -80,10 +67,8 @@ public SpecificQueryResultSet searchByFileProperties(List<DataGridFilePropertySe
/**
* Counts the total number of Collections matching a specific metadata criteria.
*
* @param metadataSearch
* list of metadata criteria to apply the search
* @param zone
* zone to be looking for collections
* @param metadataSearch list of metadata criteria to apply the search
* @param zone zone to be looking for collections
* @return total number of collections matching a metadata search criteria
* @throws DataGridConnectionRefusedException
* @throws JargonException
Expand All @@ -95,10 +80,8 @@ public int countCollectionsMatchingMetadata(List<DataGridMetadataSearch> metadat
* Counts the total number of data objects matching a specific metadata
* criteria.
*
* @param metadataSearch
* list of metadata criteria to apply the search
* @param zone
* zone to be looking for data objects
* @param metadataSearch list of metadata criteria to apply the search
* @param zone zone to be looking for data objects
* @return total number of data objects matching a metadata search criteria
* @throws DataGridConnectionRefusedException
* @throws JargonException
Expand All @@ -110,10 +93,9 @@ public int countDataObjectsMatchingMetadata(List<DataGridMetadataSearch> metadat
* Counts the total number of Collections matching a specific file properties
* criteria.
*
* @param filePropertiesSearch
* list of file properties criteria to apply the search
* @param zone
* zone to be looking for collections
* @param filePropertiesSearch list of file properties criteria to apply the
* search
* @param zone zone to be looking for collections
* @return total number of collections matching a file properties search
* criteria
* @throws DataGridConnectionRefusedException
Expand All @@ -128,10 +110,9 @@ public int countCollectionsMatchingFileProperties(List<DataGridFilePropertySearc
* Counts the total number of data objects matching a specific file properties
* criteria.
*
* @param filePropertiesSearch
* list of file properties criteria to apply the search
* @param zone
* zone to be looking for data objects
* @param filePropertiesSearch list of file properties criteria to apply the
* search
* @param zone zone to be looking for data objects
* @return total number of data objects matching a file properties search
* criteria
* @throws DataGridConnectionRefusedException
Expand All @@ -142,11 +123,6 @@ public int countDataObjectsMatchingFileProperties(List<DataGridFilePropertySearc
String zone)
throws DataGridConnectionRefusedException, UnsupportedDataGridFeatureException, JargonException;

/**
* @param irodsServices the irodsServices to set
*/
void setIrodsServices(IRODSServices irodsServices);

/**
* @param adminServices the adminServices to set
*/
Expand Down
2 changes: 1 addition & 1 deletion irodsext-data-typer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>jargon-irods-ext</artifactId>
<groupId>org.irods.jargon</groupId>
<version>4.3.2.1-SNAPSHOT</version>
<version>4.3.2.1-RELEASE</version>
</parent>
<artifactId>irodsext-data-typer</artifactId>
<name>irodsext-data-typer</name>
Expand Down

0 comments on commit 9e502ba

Please sign in to comment.