Skip to content
This repository was archived by the owner on Oct 28, 2025. It is now read-only.

Commit 7857d2d

Browse files
authored
Update README.md
1 parent abeb734 commit 7857d2d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# The Blue Alliance API Java Library [![Build Status](https://travis-ci.org/spencerng/TBA-API-Java-Library.svg?branch=master)](https://travis-ci.org/spencerng/TBA-API-Java-Library)
1+
# The Blue Alliance API Java Library [![Build Status](https://travis-ci.org/spencerng/blue-alliance-api-java-library.svg?branch=master)](https://travis-ci.org/spencerng/blue-alliance-api-java-library)
22

33
Java client library to retrieve data from The Blue Alliance using TBA API v3
44

5-
Full Javadoc documentation can be found [here](http://spencerng.github.io/TBA-API-Java-Library/)
5+
Full Javadoc documentation can be found [here](http://spencerng.github.io/blue-alliance-api-java-library/)
66

77
## Usage
88

@@ -15,19 +15,19 @@ Begin by creating a TBA object with your Read TBA API Key. This can be found or
1515

1616
The library allows access to almost all of the calls in [The Blue Alliance API v3 documentation](https://www.thebluealliance.com/apidocs/v3).
1717

18-
They are grouped into requests with team, event, district, or match parameters, and you will need to use the `teamRequest`, `eventRequest`, or `matchRequest` instance variables found in the [`TBA` class](http://spencerng.github.io/TBA-API-Java-Library/com/thebluealliance/api/v3/TBA.html).
18+
They are grouped into requests with team, event, district, or match parameters, and you will need to use the `teamRequest`, `eventRequest`, or `matchRequest` instance variables found in the [`TBA` class](http://spencerng.github.io/blue-alliance-api-java-library/com/thebluealliance/api/v3/TBA.html).
1919

2020
Here is an example of retrieving an array of teams in the FIRST Mid-Atlantic district in 2017:
2121

2222
Team[] midAtlanticTeams = tba.districtRequest.getTeams("2017mar");
2323

24-
A list of request methods for each request object can be found [here](http://spencerng.github.io/TBA-API-Java-Library/com/thebluealliance/api/v3/requests/package-summary.html).
24+
A list of request methods for each request object can be found [here](http://spencerng.github.io/blue-alliance-api-java-library/com/thebluealliance/api/v3/requests/package-summary.html).
2525

2626
### Advance Usage
2727

28-
If you want to utilize the `If-Modified-Since` and `Last-Modified` headers, you will need to make a direct URL request with the [`getDataTBA(String urlDirectory)` method](http://spencerng.github.io/TBA-API-Java-Library/com/thebluealliance/api/v3/requests/DataRequest.html#getDataTBA-java.lang.String-java.lang.String-) in the [`DataRequest` class](http://spencerng.github.io/TBA-API-Java-Library/com/thebluealliance/api/v3/requests/DataRequest.html). This will return an [`APIResponse`](http://spencerng.github.io/TBA-API-Java-Library/com/thebluealliance/api/v3/requests/APIResponse.html) object with JSON data, the HTTP response code, and the `Last-Modified` header.
28+
If you want to utilize the `If-Modified-Since` and `Last-Modified` headers, you will need to make a direct URL request with the [`getDataTBA(String urlDirectory)` method](http://spencerng.github.io/blue-alliance-api-java-library/com/thebluealliance/api/v3/requests/DataRequest.html#getDataTBA-java.lang.String-java.lang.String-) in the [`DataRequest` class](http://spencerng.github.io/blue-alliance-api-java-library/com/thebluealliance/api/v3/requests/DataRequest.html). This will return an [`APIResponse`](http://spencerng.github.io/blue-alliance-api-java-library/com/thebluealliance/api/v3/requests/APIResponse.html) object with JSON data, the HTTP response code, and the `Last-Modified` header.
2929

30-
The JSON data will need to be deserialized into an object model with a method in the [`Deserializer` class](http://spencerng.github.io/TBA-API-Java-Library/com/thebluealliance/api/v3/Deserializer.html) before being used.
30+
The JSON data will need to be deserialized into an object model with a method in the [`Deserializer` class](http://spencerng.github.io/blue-alliance-api-java-library/com/thebluealliance/api/v3/Deserializer.html) before being used.
3131

3232
Here is an example of continuously fetching the `Match` objects for the 2017 Mount Olive District Event, if they have been updated. Note that this is very inefficient.
3333

@@ -46,7 +46,7 @@ Here is an example of continuously fetching the `Match` objects for the 2017 Mou
4646

4747
## Models
4848

49-
A list of object model classes and their getter methods for instance variables can be found [here](http://spencerng.github.io/TBA-API-Java-Library/com/thebluealliance/api/v3/models/package-summary.html)
49+
A list of object model classes and their getter methods for instance variables can be found [here](http://spencerng.github.io/blue-alliance-api-java-library/com/thebluealliance/api/v3/models/package-summary.html)
5050

5151
## Contact
5252

0 commit comments

Comments
 (0)