Make UploadMethod backward compatible
This commit is contained in:
parent
24eee41596
commit
f585b2cc56
@ -636,17 +636,23 @@ public class GeoServerRESTPublisher {
|
|||||||
* is the file itself.
|
* is the file itself.
|
||||||
*/
|
*/
|
||||||
FILE,
|
FILE,
|
||||||
|
@Deprecated
|
||||||
|
file,
|
||||||
/**
|
/**
|
||||||
* indirectly upload a file from a remote source. The body of the
|
* indirectly upload a file from a remote source. The body of the
|
||||||
* request is the URL where the data is published. This url must be
|
* request is the URL where the data is published. This url must be
|
||||||
* visible from the server.
|
* visible from the server.
|
||||||
*/
|
*/
|
||||||
URL,
|
URL,
|
||||||
|
@Deprecated
|
||||||
|
url,
|
||||||
/**
|
/**
|
||||||
* forgo upload, and use an existing file on the server. The body of the
|
* forgo upload, and use an existing file on the server. The body of the
|
||||||
* request is the absolute local path to the existing file.
|
* request is the absolute local path to the existing file.
|
||||||
*/
|
*/
|
||||||
EXTERNAL;
|
EXTERNAL,
|
||||||
|
@Deprecated
|
||||||
|
external;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a lowercase representation of the parameter value, suitable
|
* Returns a lowercase representation of the parameter value, suitable
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user