@@ -112,7 +112,7 @@ public interface RpcAPI {
112
112
/**
113
113
* Retrieve document by name. XML content is indented if prettyPrint is set
114
114
* to >=0. Use supplied encoding for output.
115
- *
115
+ * <p>
116
116
* This method is provided to retrieve a document with encodings other than
117
117
* UTF-8. Since the data is handled as binary data, character encodings are
118
118
* preserved. byte[]-values are automatically BASE64-encoded by the XMLRPC
@@ -132,7 +132,7 @@ byte[] getDocument(String name, String encoding, int prettyPrint)
132
132
* Retrieve document by name. XML content is indented if prettyPrint is set
133
133
* to >=0. Use supplied encoding for output and apply the specified
134
134
* stylesheet.
135
- *
135
+ * <p>
136
136
* This method is provided to retrieve a document with encodings other than
137
137
* UTF-8. Since the data is handled as binary data, character encodings are
138
138
* preserved. byte[]-values are automatically BASE64-encoded by the XMLRPC
@@ -152,7 +152,7 @@ byte[] getDocument(String name, String encoding, int prettyPrint, String stylesh
152
152
/**
153
153
* Retrieve document by name. All optional output parameters are passed as
154
154
* key/value pairs int the <code>parameters</code>.
155
- *
155
+ * <p>
156
156
* Valid keys may either be taken from
157
157
* {@link javax.xml.transform.OutputKeys} or
158
158
* {@link org.exist.storage.serializers.EXistOutputKeys}. For example, the
@@ -247,10 +247,10 @@ List<String> getCollectionListing(final String collection)
247
247
List <String > getDocumentListing (String collection )
248
248
throws EXistException , PermissionDeniedException , URISyntaxException ;
249
249
250
- Map <String , List > listDocumentPermissions (String name )
250
+ Map <String , List < Object > > listDocumentPermissions (String name )
251
251
throws EXistException , PermissionDeniedException , URISyntaxException ;
252
252
253
- Map <XmldbURI , List > listCollectionPermissions (String name )
253
+ Map <String , List < Object > > listCollectionPermissions (String name )
254
254
throws EXistException , PermissionDeniedException , URISyntaxException ;
255
255
256
256
/**
@@ -497,6 +497,7 @@ byte[] query(
497
497
* @throws PermissionDeniedException If the current user is not allowed to perform this action
498
498
* @deprecated use List query() or int executeQuery() instead
499
499
*/
500
+ @ Deprecated
500
501
Map <String , Object > querySummary (String xquery )
501
502
throws EXistException , PermissionDeniedException ;
502
503
@@ -612,7 +613,7 @@ String uploadCompressed(String file, byte[] data, int length)
612
613
613
614
/**
614
615
* Parse a file previously uploaded with upload.
615
- *
616
+ * <p>
616
617
* The temporary file will be removed.
617
618
*
618
619
* @param localFile temporary file name
@@ -749,6 +750,7 @@ Map<String, Object> execute(String path, Map<String, Object> parameters)
749
750
*
750
751
* @deprecated Use {@link #executeT(String, Map)} instead.
751
752
*/
753
+ @ Deprecated
752
754
Map <String , Object > executeT (String path , Map <String , Object > parameters )
753
755
throws EXistException , PermissionDeniedException ;
754
756
@@ -926,7 +928,7 @@ String hasUserLock(String path)
926
928
927
929
List <String > getGroups () throws EXistException , PermissionDeniedException ;
928
930
929
- List <List > getIndexedElements (String collectionName , boolean inclusive )
931
+ List <List < Object > > getIndexedElements (String collectionName , boolean inclusive )
930
932
throws EXistException , PermissionDeniedException , URISyntaxException ;
931
933
932
934
boolean releaseQueryResult (int handle );
0 commit comments