Skip to content

Commit ba25482

Browse files
author
Sravan Kottam
committed
Merge remote-tracking branch 'origin/dev' into dev
2 parents 50c7b03 + b8f7b12 commit ba25482

File tree

604 files changed

+5278
-1484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

604 files changed

+5278
-1484
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
target/
22
.classpath
33
.project
4+
.gradle
45
.settings/
56
*.class
7+
test-complete/build/
68

79
# Package Files #
810
*.jar

pom.xml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<name>client-api-java</name>
99
<url>http://developer.marklogic.com</url>
1010
<properties>
11-
<javadoc-title>${project.name} 2.0 ${maven.build.timestamp}</javadoc-title>
11+
<javadoc-title>${project.name} ${project.version} ${maven.build.timestamp}</javadoc-title>
1212
<maven.build.timestamp.format>yyyy-MM-dd</maven.build.timestamp.format>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1414
<github.global.server>github</github.global.server>
@@ -36,10 +36,10 @@
3636
<artifactId>maven-javadoc-plugin</artifactId>
3737
<version>2.8.1</version>
3838
<configuration>
39-
<bottom><![CDATA[Copyright &#169; 2013-2014 MarkLogic Corporation.]]></bottom>
39+
<bottom><![CDATA[Copyright &#169; 2013-2015 MarkLogic Corporation.]]></bottom>
4040
<excludePackageNames>*.impl:*.jaxb:*.test:*.test.*</excludePackageNames>
4141
<links>
42-
<link>http://docs.oracle.com/javase/6/docs/api/</link>
42+
<link>http://docs.oracle.com/javase/8/docs/api/</link>
4343
</links>
4444
<overview>${basedir}/src/main/javadoc/overview.html</overview>
4545
<show>public</show>
@@ -327,11 +327,5 @@
327327
<version>2.4.1</version>
328328
<scope>test</scope>
329329
</dependency>
330-
<dependency>
331-
<groupId>com.google.guava</groupId>
332-
<artifactId>guava</artifactId>
333-
<version>16.0.1</version>
334-
<scope>test</scope>
335-
</dependency>
336330
</dependencies>
337331
</project>

src/main/java/com/marklogic/client/DatabaseClient.java

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 MarkLogic Corporation
2+
* Copyright 2012-2015 MarkLogic Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -135,17 +135,6 @@ public interface DatabaseClient {
135135
*/
136136
public <T extends ResourceManager> T init(String resourceName, T resourceManager);
137137

138-
/**
139-
* Initializes a manager for a extension resource.
140-
*
141-
* @param resourceName the name of the extension resource
142-
* @param resourceManager the manager for the extension resource
143-
* @param scriptLanguage the script language for the extension resource, either XQUERY (default) or JAVASCRIPT
144-
* @return the initialized resource manager
145-
*/
146-
public <T extends ResourceManager> T init(String resourceName, T resourceManager,
147-
ExtensionMetadata.ScriptLanguage scriptLanguage);
148-
149138
/**
150139
* Creates a logger for document and query requests. To merge the logging output
151140
* with the output from other loggers, pass the output stream used by the other

src/main/java/com/marklogic/client/DatabaseClientFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 MarkLogic Corporation
2+
* Copyright 2012-2015 MarkLogic Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/marklogic/client/FailedRequestException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 MarkLogic Corporation
2+
* Copyright 2012-2015 MarkLogic Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/marklogic/client/ForbiddenUserException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 MarkLogic Corporation
2+
* Copyright 2012-2015 MarkLogic Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/marklogic/client/MarkLogicBindingException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 MarkLogic Corporation
2+
* Copyright 2012-2015 MarkLogic Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/marklogic/client/MarkLogicIOException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 MarkLogic Corporation
2+
* Copyright 2012-2015 MarkLogic Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/marklogic/client/MarkLogicInternalException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 MarkLogic Corporation
2+
* Copyright 2012-2015 MarkLogic Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/marklogic/client/MarkLogicServerException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2014 MarkLogic Corporation
2+
* Copyright 2012-2015 MarkLogic Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)