8000 replaced 'arangodb.org' with 'arangodb.com' · anderick/arangodb-java-driver@12a6dbe · GitHub
[go: up one dir, main page]

Skip to content

Commit 12a6dbe

Browse files
committed
replaced 'arangodb.org' with 'arangodb.com'
1 parent b216451 commit 12a6dbe

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ instead of using a for statement you can also use an iterator:
246246
```
247247

248248
#User Management
249-
If you are using [authentication] (http://docs.arangodb.org/ConfigureArango/Authentication.html) you can manage users with the driver.
249+
If you are using [authentication] (http://docs.arangodb.com/ConfigureArango/Authentication.html) you can manage users with the driver.
250250

251251
##add user
252252
``` Java

src/main/java/com/arangodb/ArangoDriver.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1368,7 +1368,7 @@ public ImportResultEntity importDocumentsByHeaderValues(
13681368
/**
13691369
* @return
13701370
* @throws ArangoException
1371-
* @see http://www.arangodb.org/manuals/current/HttpDatabase.html#
1371+
* @see http://www.arangodb.com/manuals/current/HttpDatabase.html#
13721372
* HttpDatabaseCurrent
13731373
* @since 1.4.0
13741374
*/
@@ -1380,7 +1380,7 @@ public DatabaseEntity getCurrentDatabase() throws ArangoException {
13801380
* @return
13811381
* @throws ArangoException
13821382
* @see http
1383-
* ://www.arangodb.org/manuals/current/HttpDatabase.html#HttpDatabaseList2
1383+
* ://www.arangodb.com/manuals/current/HttpDatabase.html#HttpDatabaseList2
13841384
* @since 1.4.0
13851385
*/
13861386
public StringsResultEntity getDatabases() throws ArangoException {
@@ -1392,7 +1392,7 @@ public StringsResultEntity getDatabases() throws ArangoException {
13921392
* @return
13931393
* @throws ArangoException
13941394
* @see http
1395-
* ://www.arangodb.org/manuals/current/HttpDatabase.html#HttpDatabaseList
1395+
* ://www.arangodb.com/manuals/current/HttpDatabase.html#HttpDatabaseList
13961396
* @since 1.4.1
13971397
*/
13981398
public StringsResultEntity getDatabases(boolean currentUserAccessableOnly) throws ArangoException {
@@ -1416,7 +1416,7 @@ public StringsResultEntity getDatabases(String username, String password) throws
14161416
* @return
14171417
* @throws ArangoException
14181418
* @see http
1419-
* ://www.arangodb.org/manuals/current/HttpDatabase.html#HttpDatabaseCreate
1419+
* ://www.arangodb.com/manuals/current/HttpDatabase.html#HttpDatabaseCreate
14201420
* @since 1.4.0
14211421
*/
14221422
public BooleanResultEntity createDatabase(String database, UserEntity... users) throws ArangoException {
@@ -1428,7 +1428,7 @@ public BooleanResultEntity createDatabase(String database, UserEntity... users)
14281428
* @return
14291429
* @throws ArangoException
14301430
* @see http
1431-
* ://www.arangodb.org/manuals/current/HttpDatabase.html#HttpDatabaseDelete
1431+
* ://www.arangodb.com/manuals/current/HttpDatabase.html#HttpDatabaseDelete
14321432
* @since 1.4.0
14331433
*/
14341434
public BooleanResultEntity deleteDatabase(String database) throws ArangoException {

src/main/java/com/arangodb/BaseArangoDriver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ protected void validateDocumentHandle(String documentHandle) throws ArangoExcept
8686
* @param allowNull
8787
* @throws ArangoException
8888
* @see http
89-
* ://www.arangodb.org/manuals/current/NamingConventions.html#DatabaseNames
89+
* ://www.arangodb.com/manuals/current/NamingConventions.html#DatabaseNames
9090
*/
9191
protected void validateDatabaseName(String database, boolean allowNull) throws ArangoException {
9292
boolean valid = false;

src/main/java/com/arangodb/entity/IndexType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* Index Type.
2121
* @author tamtam180 - kirscheless at gmail.com
22-
* @see http://www.arangodb.org/manuals/current/HttpIndex.html#HttpIndexIntro
22+
* @see http://www.arangodb.com/manuals/current/HttpIndex.html#HttpIndexIntro
2323
*/
2424
public enum IndexType {
2525
/** Primary Index */

src/main/java/com/arangodb/entity/ReplicationEventType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* @author tamtam180 - kirscheless at gmail.com
2323
* @since 1.4.0
24-
* @see http://www.arangodb.org/manuals/current/RefManualReplication.html#RefManualReplicationEventTypes
24+
* @see http://www.arangodb.com/manuals/current/RefManualReplication.html#RefManualReplicationEventTypes
2525
*/
2626
public enum ReplicationEventType {
2727

src/main/java/com/arangodb/impl/InternalAdminDriverImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public StatisticsDescriptionEntity getStatisticsDescription() throws ArangoExcep
112112
*
113113
* @return
114114
* @throws ArangoException
115-
* @see http://www.arangodb.org/manuals/current/HttpMisc.html#HttpMiscVersion
115+
* @see http://www.arangodb.com/manuals/current/HttpMisc.html#HttpMiscVersion
116116
*/
117117
@Override
118118
public ArangoVersion getVersion() throws ArangoException {

src/main/java/com/arangodb/impl/InternalImportDriverImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
/**
3030
* @author tamtam180 - kirscheless at gmail.com
31-
* @see http://www.arangodb.org/manuals/current/HttpImport.html
31+
* @see http://www.arangodb.com/manuals/current/HttpImport.html
3232
*/
3333
public class InternalImportDriverImpl extends BaseArangoDriverImpl implements com.arangodb.InternalImportDriver {
3434

src/main/java/com/arangodb/impl/InternalJobsDriverImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
/**
3333
* @author tamtam180 - kirscheless at gmail.com
34-
* @see http://www.arangodb.org/manuals/current/HttpImport.html
34+
* @see http://www.arangodb.com/manuals/current/HttpImport.html
3535
*/
3636
public class InternalJobsDriverImpl extends BaseArangoDriverImpl implements com.arangodb.InternalJobsDriver {
3737

0 commit comments

Comments
 (0)
0