Skip to content

Commit 4adcbb6

Browse files
author
Kyle Morse
committed
2.1.2 release prep
1 parent 688eeaa commit 4adcbb6

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

src/main/java/META-INF/MANIFEST.MF

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Manifest-Version: "1.2"
22
Implementation-Vendor: "Rally Software, Inc."
33
Implementation-Title: "com.rallydev.rest"
4-
Implementation-Version: "2.1.1"
4+
Implementation-Version: "2.1.2"
55
Class-Path: "httpcore-4.2.4.jar httpclient-4.2.5.jar commons-logging-1.1.1.jar commons-codec-1.6.jar gson-2.2.4.jar"
66
Specification-Vendor: "Rally Software, Inc."
77
Name: "com/rallydev/rest/"
88
Specification-Title: "Rally Rest API for Java"
9-
Specification-Version: "2.1.1"
9+
Specification-Version: "2.1.2"

src/main/java/com/rallydev/rest/client/BasicAuthClient.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,14 @@ protected String doRequest(HttpRequestBase request) throws IOException {
5858

5959
/**
6060
* Attach the security token parameter to the request.
61-
* <p/>
61+
*
6262
* Response Structure:
6363
* {"OperationResult": {"SecurityToken": "UUID"}}
6464
*
6565
* @param request the request to be modified
6666
* @throws IOException if a non-200 response code is returned or if some other
6767
* problem occurs while executing the request
68+
* @throws URISyntaxException if there is a problem with the url in the request
6869
*/
6970
protected void attachSecurityInfo(HttpRequestBase request) throws IOException, URISyntaxException {
7071
if (!SECURITY_ENDPOINT_DOES_NOT_EXIST.equals(securityToken)) {

src/main/java/com/rallydev/rest/client/HttpClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ private enum Header {
3939

4040
private Map<Header, String> headers = new HashMap<Header, String>() {
4141
{
42-
put(Header.Library, "Rally Rest API for Java v2.1.1");
42+
put(Header.Library, "Rally Rest API for Java v2.1.2");
4343
put(Header.Name, "Rally Rest API for Java");
4444
put(Header.Vendor, "Rally Software, Inc.");
45-
put(Header.Version, "2.1.1");
45+
put(Header.Version, "2.1.2");
4646
}
4747
};
4848

src/main/java/com/rallydev/rest/request/QueryRequest.java

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,8 @@ public String getWorkspace() {
9898
}
9999

100100
/**
101-
* <p>Specify the workspace which the result set should be scoped to.<p/>
101+
* <p>Specify the workspace which the result set should be scoped to.</p>
102102
* The default is the user's default workspace.
103-
* <p/>
104103
*
105104
* @param workspaceRef the ref of the workspace to scope to. May be an absolute or relative ref, e.g. /workspace/1234
106105
*/
@@ -118,10 +117,9 @@ public String getProject() {
118117
}
119118

120119
/**
121-
* <p>Specify the project which the result set should be scoped to.<p/>
120+
* <p>Specify the project which the result set should be scoped to.</p>
122121
* The default is the user's default project.
123122
* Specifying null will cause the result to be scoped to the entire specified workspace.
124-
* <p/>
125123
*
126124
* @param projectRef the ref of the project to scope to. May be null or an absolute or relative ref, e.g. /project/1234
127125
*/
@@ -131,7 +129,6 @@ public void setProject(String projectRef) {
131129

132130
/**
133131
* If a project has been specified, get whether to include matching objects in parent projects in the result set.
134-
* <p/>
135132
*
136133
* @return whether to include matching objects in parent projects.
137134
*/
@@ -142,7 +139,6 @@ public boolean isScopedUp() {
142139
/**
143140
* <p>If a project has been specified, set whether to include matching objects in parent projects in the result set.</p>
144141
* Defaults to false.
145-
* <p/>
146142
*
147143
* @param scopeUp whether to include matching objects in parent projects
148144
*/
@@ -152,7 +148,6 @@ public void setScopedUp(boolean scopeUp) {
152148

153149
/**
154150
* If a project has been specified, get whether to include matching objects in child projects in the result set.
155-
* <p/>
156151
*
157152
* @return whether to include matching objects in child projects.
158153
*/
@@ -163,7 +158,6 @@ public boolean isScopedDown() {
163158
/**
164159
* <p>If a project has been specified, set whether to include matching objects in child projects in the result set.</p>
165160
* Defaults to true.
166-
* <p/>
167161
*
168162
* @param scopeDown whether to include matching objects in child projects
169163
*/

0 commit comments

Comments
 (0)