@@ -947,8 +947,6 @@ public <T> DocumentEntity<T> createDocument(final String collectionName, final T
947947 * the desired document key
948948 * @param value
949949 * An object containing the documents attributes
950- * @param createCollection
951- * if set to true the collection is created if it does not exist
952950 * @param waitForSync
953951 * if set to true the response is returned when the server has
954952 * finished.
@@ -975,8 +973,6 @@ public DocumentEntity<?> createDocument(
975973 * the desired document key
976974 * @param value
977975 * An object containing the documents attributes
978- * @param createCollection
979- * if set to true the collection is created if it does not exist
980976 * @param waitForSync
981977 * if set to true the response is returned when the server has
982978 * finished.
@@ -2936,7 +2932,7 @@ public UserEntity getUser(final String username) throws ArangoException {
29362932 * @param username
29372933 * the username as string
29382934 * @param database
2939- * @return
2935+ * @return a DefaultEntity object
29402936 * @throws ArangoException
29412937 */
29422938 public DefaultEntity grantDatabaseAccess (String username , String database ) throws ArangoException {
@@ -4688,7 +4684,7 @@ public QueriesResultEntity getSlowQueries(final String database) throws ArangoEx
46884684 /**
46894685 * Clears the list of slow AQL queries of the default database
46904686 *
4691- * @return
4687+ * @return a DefaultEntity object
46924688 * @throws ArangoException
46934689 */
46944690 public DefaultEntity deleteSlowQueries () throws ArangoException {
@@ -4700,7 +4696,7 @@ public DefaultEntity deleteSlowQueries() throws ArangoException {
47004696 *
47014697 * @param database
47024698 * the database name or null
4703- * @return
4699+ * @return a DefaultEntity object
47044700 * @throws ArangoException
47054701 */
47064702 public DefaultEntity deleteSlowQueries (final String database ) throws ArangoException {
@@ -4712,7 +4708,7 @@ public DefaultEntity deleteSlowQueries(final String database) throws ArangoExcep
47124708 *
47134709 * @param id
47144710 * the identifier of a query
4715- * @return
4711+ * @return a DefaultEntity object
47164712 * @throws ArangoException
47174713 */
47184714 public DefaultEntity killQuery (final String id ) throws ArangoException {
@@ -4726,7 +4722,7 @@ public DefaultEntity killQuery(final String id) throws ArangoException {
47264722 * the identifier of a query
47274723 * @param database
47284724 * the database name or null
4729- * @return
4725+ * @return a DefaultEntity object
47304726 * @throws ArangoException
47314727 */
47324728 public DefaultEntity killQuery (final String database , final String id ) throws ArangoException {
@@ -4749,8 +4745,6 @@ public HttpManager getHttpManager() {
47494745 * The name of the collection
47504746 * @param rawJsonString
47514747 * A string containing a JSON object
4752- * @param createCollection
4753- * if set to true the collection is created if it does not exist
47544748 * @param waitForSync
47554749 * if set to true the response is returned when the server has
47564750 * finished.
0 commit comments