task_21379 #3

Merged
francesco.mangiacrapa merged 20 commits from task_21379 into master 2021-05-25 10:41:24 +02:00
1 changed files with 12 additions and 43 deletions
Showing only changes of commit 74839e1d03 - Show all commits

View File

@ -4,16 +4,12 @@ import java.io.Serializable;
import org.gcube.portal.wssynclibrary.shared.thredds.Status; import org.gcube.portal.wssynclibrary.shared.thredds.Status;
// TODO: Auto-generated Javadoc
/** /**
* The Class WsThreddsSynchFolderConfiguration. * The Class WsThreddsSynchFolderConfiguration.
* *
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it * @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it Feb 16, 2018
* Feb 16, 2018
*/ */
public class WsThreddsSynchFolderConfiguration implements Serializable{ public class WsThreddsSynchFolderConfiguration implements Serializable {
/** /**
* *
@ -31,28 +27,27 @@ public class WsThreddsSynchFolderConfiguration implements Serializable{
/** The to create catalog name. */ /** The to create catalog name. */
private String catalogName; private String catalogName;
private Status status; //just for serialization private Status status; // just for serialization
private String rootFolderId; private String rootFolderId;
/** /**
* Instantiates a new ws thredds synch folder configuration. * Instantiates a new ws thredds synch folder configuration.
*/ */
public WsThreddsSynchFolderConfiguration() { public WsThreddsSynchFolderConfiguration() {
// TODO Auto-generated constructor stub
}
}
/** /**
* Instantiates a new ws thredds synch folder configuration. * Instantiates a new ws thredds synch folder configuration.
* *
* @param remotePath the remote path * @param remotePath the remote path
* @param theVRE the the vre * @param theVRE the the vre
* @param filter the filter * @param filter the filter
* @param catalogName the catalog name * @param catalogName the catalog name
*/ */
public WsThreddsSynchFolderConfiguration(String remotePath, GcubeScope theVRE, String filter, String catalogName, String rootFolderId) { public WsThreddsSynchFolderConfiguration(String remotePath, GcubeScope theVRE, String filter, String catalogName,
String rootFolderId) {
super(); super();
this.remotePath = remotePath; this.remotePath = remotePath;
this.selectedScope = theVRE; this.selectedScope = theVRE;
@ -61,7 +56,6 @@ public class WsThreddsSynchFolderConfiguration implements Serializable{
this.rootFolderId = rootFolderId; this.rootFolderId = rootFolderId;
} }
/** /**
* @param rootFolderId the rootFolderId to set * @param rootFolderId the rootFolderId to set
*/ */
@ -70,7 +64,6 @@ public class WsThreddsSynchFolderConfiguration implements Serializable{
this.rootFolderId = rootFolderId; this.rootFolderId = rootFolderId;
} }
/** /**
* @return the rootFolderId * @return the rootFolderId
*/ */
@ -79,7 +72,6 @@ public class WsThreddsSynchFolderConfiguration implements Serializable{
return rootFolderId; return rootFolderId;
} }
/** /**
* Gets the remote path. * Gets the remote path.
* *
@ -98,7 +90,6 @@ public class WsThreddsSynchFolderConfiguration implements Serializable{
this.remotePath = remotePath; this.remotePath = remotePath;
} }
/** /**
* @return the selectedScope * @return the selectedScope
*/ */
@ -107,17 +98,6 @@ public class WsThreddsSynchFolderConfiguration implements Serializable{
return selectedScope; return selectedScope;
} }
/**
* @return the status
*/
public Status getStatus() {
return status;
}
/** /**
* @param selectedScope the selectedScope to set * @param selectedScope the selectedScope to set
*/ */
@ -126,17 +106,6 @@ public class WsThreddsSynchFolderConfiguration implements Serializable{
this.selectedScope = selectedScope; this.selectedScope = selectedScope;
} }
/**
* @param status the status to set
*/
public void setStatus(Status status) {
this.status = status;
}
/** /**
* Gets the filter. * Gets the filter.
* *
@ -173,8 +142,9 @@ public class WsThreddsSynchFolderConfiguration implements Serializable{
this.catalogName = catalogName; this.catalogName = catalogName;
} }
/*
/* (non-Javadoc) * (non-Javadoc)
*
* @see java.lang.Object#toString() * @see java.lang.Object#toString()
*/ */
@Override @Override
@ -197,5 +167,4 @@ public class WsThreddsSynchFolderConfiguration implements Serializable{
return builder.toString(); return builder.toString();
} }
} }