Skip to content

Commit

Permalink
Merge pull request #25 from mailersend/javadoc
Browse files Browse the repository at this point in the history
fixes for javadocs
  • Loading branch information
robgordon89 authored Apr 21, 2022
2 parents 6ae08cf + c0cd9fb commit b6fe71e
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mailersend/sdk/analytics/Analytics.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class Analytics {

/**
* Do not initialize directly. This should only be accessed from MailerSend.analytics
* @param apiReference
* @param ref
*/
public Analytics(MailerSend ref) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mailersend/sdk/domains/Domains.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Domains {

/**
* Do not initialize directly. This should only be accessed from MailerSend.domains
* @param apiReference
* @param ref
*/
public Domains(MailerSend ref) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mailersend/sdk/emails/Emails.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public Email createEmail() {
/**
* Sends the given email
* @param email
* @throws MailerSendResponseError
* @throws MailerSendException
*/
public MailerSendResponse send(Email email) throws MailerSendException {

Expand Down
3 changes: 1 addition & 2 deletions src/main/java/com/mailersend/sdk/emails/Variable.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ public class Variable {

/**
* Adds or replaces a variable substitution
* @param variable
* @param value
* @param substitution
*/
public void addSubstitution(Substitution substitution) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class Recipients {

/**
* Do not initialize directly. This should only be accessed from MailerSend.analytics
* @param apiReference
* @param ref
*/
public Recipients(MailerSend ref) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class Suppressions {

/**
* Do not initialize directly. This should only be accessed from MailerSend.analytics
* @param apiReference
* @param ref
*/
public Suppressions(MailerSend ref) {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mailersend/sdk/templates/Templates.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Templates {

/**
* Do not initialize directly. This should only be accessed from MailerSend.analytics
* @param apiReference
* @param ref
*/
public Templates(MailerSend ref) {

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/mailersend/sdk/webhooks/Webhooks.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Webhooks {

/**
* Do not initialize directly. This should only be accessed from MailerSend.webhooks
* @param apiReference
* @param apiObjectRef
*/
public Webhooks(MailerSend apiObjectRef) {

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

/**
* Gets a single webhook
* @param domainId
* @param webhookId
* @return
* @throws MailerSendException
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public Webhook createWebhook(String domainId) throws MailerSendException {

/**
* Updates the webhook with the given id
* @param domainId
* @param webhookId
* @return
* @throws MailerSendException
*/
Expand Down

0 comments on commit b6fe71e

Please sign in to comment.