Restored old costants:

GetHttpUrl.URL_SEPARATOR
GetHttpUrl.VOLATILE_URL_SEPARATOR
and set them to deprecated


git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/branches/content-management/storage-manager-core/2.9@173723 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Roberto Cirillo 2018-10-19 13:09:22 +00:00
parent 9fa52cbc79
commit 2bd087f658
2 changed files with 11 additions and 0 deletions

View File

@ -17,6 +17,11 @@ public class GetHttpUrl extends Operation {
// private OutputStream os;
TransportManager tm;
@Deprecated
public static final String URL_SEPARATOR=Costants.URL_SEPARATOR;
@Deprecated
public static final String VOLATILE_URL_IDENTIFICATOR = Costants.VOLATILE_URL_IDENTIFICATOR;
public GetHttpUrl(String[] server, String user, String pwd, String bucket, Monitor monitor, boolean isChunk, String backendType, String[] dbs) {
super(server, user, pwd, bucket, monitor, isChunk, backendType, dbs);
}

View File

@ -18,6 +18,12 @@ public class GetHttpsUrl extends Operation {
// private OutputStream os;
TransportManager tm;
@Deprecated
public static final String URL_SEPARATOR=Costants.URL_SEPARATOR;
@Deprecated
public static final String VOLATILE_URL_IDENTIFICATOR = Costants.VOLATILE_URL_IDENTIFICATOR;
public GetHttpsUrl(String[] server, String user, String pwd, String bucket, Monitor monitor, boolean isChunk, String backendType, String[] dbs) {
super(server, user, pwd, bucket, monitor, isChunk, backendType, dbs);
}