Skip to content

Commit b6fe71e

Browse files
authored
Merge pull request #25 from mailersend/javadoc
fixes for javadocs
2 parents 6ae08cf + c0cd9fb commit b6fe71e

File tree

10 files changed

+11
-12
lines changed

10 files changed

+11
-12
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<plugin>
6565
<groupId>org.apache.maven.plugins</groupId>
6666
<artifactId>maven-javadoc-plugin</artifactId>
67-
<version>2.9.1</version>
67+
<version>3.0.1</version>
6868
<executions>
6969
<execution>
7070
<id>attach-javadocs</id>

src/main/java/com/mailersend/sdk/analytics/Analytics.java

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

3232
/**
3333
* Do not initialize directly. This should only be accessed from MailerSend.analytics
34-
* @param apiReference
34+
* @param ref
3535
*/
3636
public Analytics(MailerSend ref) {
3737

src/main/java/com/mailersend/sdk/domains/Domains.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class Domains {
2929

3030
/**
3131
* Do not initialize directly. This should only be accessed from MailerSend.domains
32-
* @param apiReference
32+
* @param ref
3333
*/
3434
public Domains(MailerSend ref) {
3535

src/main/java/com/mailersend/sdk/emails/Emails.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public Email createEmail() {
6565
/**
6666
* Sends the given email
6767
* @param email
68-
* @throws MailerSendResponseError
68+
* @throws MailerSendException
6969
*/
7070
public MailerSendResponse send(Email email) throws MailerSendException {
7171

src/main/java/com/mailersend/sdk/emails/Variable.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ public class Variable {
2222

2323
/**
2424
* Adds or replaces a variable substitution
25-
* @param variable
26-
* @param value
25+
* @param substitution
2726
*/
2827
public void addSubstitution(Substitution substitution) {
2928

src/main/java/com/mailersend/sdk/recipients/Recipients.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class Recipients {
3030

3131
/**
3232
* Do not initialize directly. This should only be accessed from MailerSend.analytics
33-
* @param apiReference
33+
* @param ref
3434
*/
3535
public Recipients(MailerSend ref) {
3636

src/main/java/com/mailersend/sdk/recipients/Suppressions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class Suppressions {
3030

3131
/**
3232
* Do not initialize directly. This should only be accessed from MailerSend.analytics
33-
* @param apiReference
33+
* @param ref
3434
*/
3535
public Suppressions(MailerSend ref) {
3636

src/main/java/com/mailersend/sdk/templates/Templates.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class Templates {
2525

2626
/**
2727
* Do not initialize directly. This should only be accessed from MailerSend.analytics
28-
* @param apiReference
28+
* @param ref
2929
*/
3030
public Templates(MailerSend ref) {
3131

src/main/java/com/mailersend/sdk/webhooks/Webhooks.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class Webhooks {
2626

2727
/**
2828
* Do not initialize directly. This should only be accessed from MailerSend.webhooks
29-
* @param apiReference
29+
* @param apiObjectRef
3030
*/
3131
public Webhooks(MailerSend apiObjectRef) {
3232

@@ -92,7 +92,7 @@ public WebhooksList getWebhooks(String domainId) throws MailerSendException {
9292

9393
/**
9494
* Gets a single webhook
95-
* @param domainId
95+
* @param webhookId
9696
* @return
9797
* @throws MailerSendException
9898
*/

src/main/java/com/mailersend/sdk/webhooks/WebhooksBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public Webhook createWebhook(String domainId) throws MailerSendException {
141141

142142
/**
143143
* Updates the webhook with the given id
144-
* @param domainId
144+
* @param webhookId
145145
* @return
146146
* @throws MailerSendException
147147
*/

0 commit comments

Comments
 (0)