Skip to content

Commit 7c770b2

Browse files
author
Chris Wilson
committed
prepares release
1 parent 58fc6c9 commit 7c770b2

File tree

2 files changed

+21
-22
lines changed

2 files changed

+21
-22
lines changed

libs/sparkpost-lib/src/main/java/com/sparkpost/package-info.java

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,38 +5,38 @@
55
* This java API is designed to follow closely the design of the SparkPost
66
* REST API. As a result, this java library is composed of 3 groups of java classes:<br>
77
* <ul>
8-
* <li> com.sparkpost.resources.ResourceXXX classes
9-
* <li> com.sparkpost.model classes (Data Transfer Objects)
10-
* <li> REST mechanism classes.
8+
* <li>com.sparkpost.resources.ResourceXXX classes
9+
* <li>com.sparkpost.model classes (Data Transfer Objects)
10+
* <li>REST mechanism classes.
1111
* </ul>
1212
* <br>
1313
* <br>
14-
* <h1> Resources classes </h1><br>
14+
* <h2>Resources classes</h2><br>
1515
* A resource class is a collection of static methods under one class.<br>
1616
* All of the methods are a 1-to-1 match with an endpoint within a SparkPost REST API.<br>
1717
* <br>
1818
* For instance, the ResourceTransmissions class contains 3 methods:
1919
* <ul>
20-
* <li> create() matches the create endpoint in the transmission API
21-
* <li> retrieve() matches the retrieve endpoint in the transmission API
22-
* <li> list() matches the list endpoint in the transmission API
20+
* <li>create() matches the create endpoint in the transmission API
21+
* <li>retrieve() matches the retrieve endpoint in the transmission API
22+
* <li>list() matches the list endpoint in the transmission API
2323
* </ul>
24-
* See the
25-
* <a href="https://www.sparkpost.com/api#/reference/transmissions"> SparkPost Transmission API</a>. <br>
24+
* See the
25+
* <a href="https://www.sparkpost.com/api#/reference/transmissions"> SparkPost Transmission API</a>. <br>
2626
* <br>
27-
* <h1> Data Transfer Objects </h1><br>
27+
* <h2>Data Transfer Objects</h2><br>
2828
* A DTO class is a container of fields which intent is to be serialized into
2929
* a JSON string when sending a request to a SparkPost API.<br>
3030
* <br>
3131
* For instance, the Sending Domains resource ( class ResourceSendingDomains )
32-
* has a create() method that matches the create endpoint in the SparkPost
32+
* has a create() method that matches the create endpoint in the SparkPost
3333
* Sending Domains API.<br>
3434
* To create a domain, the JSON request to the SparkPost API is made of 2 fields:<br>
3535
* <ul>
36-
* <li> the domain name
37-
* <li> the DKIM information
36+
* <li>the domain name
37+
* <li>the DKIM information
3838
* </ul>
39-
* We could have designed this java library to merely accept these fields in the
39+
* We could have designed this java library to merely accept these fields in the
4040
* method signature , for instance here ResourceSendingDomains.create would
4141
* have become ResourceSendingDomains.create( String domain, String dkim_info).<br>
4242
* Only in most cases the request parameters are numerous, and passing them
@@ -46,13 +46,13 @@
4646
* ResourceSendingDomains.create( RestConnection connection, SendingDomain domain)<br>
4747
* (connection is the server connection to use to make the request, see below)<br>
4848
* <br>
49-
* <h1>REST mechanism classes</h1><br>
49+
* <h2>REST mechanism classes</h2><br>
5050
* There are 4 classes necessary to put in place our REST system :
5151
* <ul>
52-
* <li> Client
53-
* <li> RestConnection
54-
* <li> Response
55-
* <li> SparkPostException
52+
* <li>Client
53+
* <li>RestConnection
54+
* <li>Response
55+
* <li>SparkPostException
5656
* </ul>
5757
* <br>
5858
* Client define information specific to the SparkPost client: the
@@ -69,6 +69,5 @@
6969
* It also implements a simple JSON-to-Java deserialization using Google's
7070
* Gson class.
7171
*/
72-
package com.sparkpost ;
73-
7472

73+
package com.sparkpost;

tools/bin/collectJars.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Do everything relative to the tools/bin directory
44
cd "$(dirname $0)"
55

6-
VERSION=0.23
6+
VERSION=0.24
77

88
cd ../..
99

0 commit comments

Comments
 (0)