From 03295e2c6519990aed35df131872bae914224e5f Mon Sep 17 00:00:00 2001 From: Francesco Mangiacrapa Date: Tue, 24 Apr 2018 09:55:07 +0000 Subject: [PATCH] removed old class git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/data-transfer/uri-resolver@167187 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../CopyOfGeonetworkRequestCriteria.java | 109 ------------------ 1 file changed, 109 deletions(-) delete mode 100644 src/main/java/org/gcube/datatransfer/resolver/CopyOfGeonetworkRequestCriteria.java diff --git a/src/main/java/org/gcube/datatransfer/resolver/CopyOfGeonetworkRequestCriteria.java b/src/main/java/org/gcube/datatransfer/resolver/CopyOfGeonetworkRequestCriteria.java deleted file mode 100644 index c35af80..0000000 --- a/src/main/java/org/gcube/datatransfer/resolver/CopyOfGeonetworkRequestCriteria.java +++ /dev/null @@ -1,109 +0,0 @@ -/** - * - */ -package org.gcube.datatransfer.resolver; - - -/** - * The Class GeonetworkRequestCriteria. - * - * @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it - * Jun 15, 2016 - */ -public class CopyOfGeonetworkRequestCriteria { - - private String scope; - private boolean valueOfFilterPublicIds; - private boolean authOnGeonetwork; - private boolean noAuthOnGeonetwork; - - /** - * Instantiates a new geonetwork request criteria. - * - * @param scope the scope - * @param valueOfFilterPublicIds the value of filter public ids - * @param noAuthOnGeonetowrk the no auth on geonetowrk - */ - public CopyOfGeonetworkRequestCriteria(String scope, boolean valueOfFilterPublicIds, boolean noAuthOnGeonetowrk){ - this.scope = scope; - this.valueOfFilterPublicIds = valueOfFilterPublicIds; - this.noAuthOnGeonetwork = noAuthOnGeonetowrk; - } - - - /** - * Checks if is no auth on geonetwork. - * - * @return the noAuthOnGeonetwork - */ - public boolean isNoAuthOnGeonetwork() { - - return noAuthOnGeonetwork; - } - - - /** - * Gets the scope. - * - * @return the scope - */ - public String getScope() { - - return scope; - } - - - /** - * Checks if is value of filter public ids. - * - * @return the valueOfFilterPublicIds - */ - public boolean isValueOfFilterPublicIds() { - - return valueOfFilterPublicIds; - } - - - /** - * Sets the scope. - * - * @param scope the scope to set - */ - public void setScope(String scope) { - - this.scope = scope; - } - - - /** - * Sets the value of filter public ids. - * - * @param valueOfFilterPublicIds the valueOfFilterPublicIds to set - */ - public void setValueOfFilterPublicIds(boolean valueOfFilterPublicIds) { - - this.valueOfFilterPublicIds = valueOfFilterPublicIds; - } - - - - /* (non-Javadoc) - * @see java.lang.Object#toString() - */ - @Override - public String toString() { - - StringBuilder builder = new StringBuilder(); - builder.append("GeonetworkRequestCriteria [scope="); - builder.append(scope); - builder.append(", valueOfFilterPublicIds="); - builder.append(valueOfFilterPublicIds); - builder.append(", authOnGeonetwork="); - builder.append(authOnGeonetwork); - builder.append(", noAuthOnGeonetwork="); - builder.append(noAuthOnGeonetwork); - builder.append("]"); - return builder.toString(); - } - -}