Skip to content

Commit

Permalink
Merge pull request #1 from boletofacil/master
Browse files Browse the repository at this point in the history
Merge changes from source to this fork
  • Loading branch information
ehamerski authored Sep 12, 2019
2 parents bd929e2 + ed24bf2 commit 8dfd9a1
Show file tree
Hide file tree
Showing 7 changed files with 955 additions and 978 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
.sonarlint

/.DS_Store

/**/target
4 changes: 2 additions & 2 deletions boletofacilsdk-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.boletobancario</groupId>
<artifactId>boletofacilsdk-client</artifactId>
<version>1.0.7</version>
<version>1.0.8</version>
<name>boletofacil-client</name>

<dependencies>
Expand Down Expand Up @@ -34,7 +34,7 @@
<dependency>
<groupId>com.boletobancario</groupId>
<artifactId>boletofacilsdk</artifactId>
<version>1.0.7</version>
<version>1.0.8</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion boletofacilsdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Before build on command line execute: export GPG_TTY=$(tty) -->
<groupId>com.boletobancario</groupId>
<artifactId>boletofacilsdk</artifactId>
<version>1.0.7</version>
<version>1.0.8</version>
<packaging>jar</packaging>
<name>Boleto Facil Java SDK</name>
<description>Boleto Facil JAVA SDK</description>
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -4,158 +4,168 @@
import com.boletobancario.boletofacilsdk.model.entities.enums.CompanyType;

public class Payee extends Person {
private String notificationUrl;
private String email;
private String password;
private String phone;
private String linesOfBusiness;
private String tradingName;
private Person repr;
private Person accountHolder;
private BankAccount bankAccount;
private Category category;
private CompanyType companyType;
private Address address;
private Integer businessAreaId;
private Boolean emailOptOut;
private Boolean autoApprove;

private String token;
private String status;

public String getNotificationUrl() {
return notificationUrl;
}

public void setNotificationUrl(String notificationUrl) {
this.notificationUrl = notificationUrl;
}

public String getEmail() {
return email;
}

public void setEmail(String email) {
this.email = email;
}

public String getPassword() {
return password;
}

public void setPassword(String password) {
this.password = password;
}

public String getPhone() {
return phone;
}

public void setPhone(String phone) {
this.phone = phone;
}

public String getLinesOfBusiness() {
return linesOfBusiness;
}

public void setLinesOfBusiness(String linesOfBusiness) {
this.linesOfBusiness = linesOfBusiness;
}

public String getTradingName() {
return tradingName;
}

public void setTradingName(String tradingName) {
this.tradingName = tradingName;
}

public Person getRepr() {
return repr;
}

public void setRepr(Person repr) {
this.repr = repr;
}

public Person getAccountHolder() {
return accountHolder;
}

public void setAccountHolder(Person accountHolder) {
this.accountHolder = accountHolder;
}

public BankAccount getBankAccount() {
return bankAccount;
}

public void setBankAccount(BankAccount bankAccount) {
this.bankAccount = bankAccount;
}

public Category getCategory() {
return category;
}

public void setCategory(Category category) {
this.category = category;
}

public CompanyType getCompanyType() {
return companyType;
}

public void setCompanyType(CompanyType companyType) {
this.companyType = companyType;
}

public Address getAddress() {
return address;
}

public void setAddress(Address address) {
this.address = address;
}

public Integer getBusinessAreaId() {
return businessAreaId;
}
private String notificationUrl;
private String email;
private String password;
private String phone;
private String linesOfBusiness;
private String tradingName;
private Person repr;
private Person accountHolder;
private BankAccount bankAccount;
private Category category;
private CompanyType companyType;
private Address address;
private Integer businessAreaId;
private Boolean emailOptOut;
private Boolean autoApprove;
private Boolean autoTransfer;

private String token;
private String status;

public String getNotificationUrl() {
return notificationUrl;
}

public void setNotificationUrl(String notificationUrl) {
this.notificationUrl = notificationUrl;
}

public String getEmail() {
return email;
}

public void setEmail(String email) {
this.email = email;
}

public String getPassword() {
return password;
}

public void setPassword(String password) {
this.password = password;
}

public String getPhone() {
return phone;
}

public void setPhone(String phone) {
this.phone = phone;
}

public String getLinesOfBusiness() {
return linesOfBusiness;
}

public void setLinesOfBusiness(String linesOfBusiness) {
this.linesOfBusiness = linesOfBusiness;
}

public String getTradingName() {
return tradingName;
}

public void setTradingName(String tradingName) {
this.tradingName = tradingName;
}

public Person getRepr() {
return repr;
}

public void setRepr(Person repr) {
this.repr = repr;
}

public Person getAccountHolder() {
return accountHolder;
}

public void setAccountHolder(Person accountHolder) {
this.accountHolder = accountHolder;
}

public BankAccount getBankAccount() {
return bankAccount;
}

public void setBankAccount(BankAccount bankAccount) {
this.bankAccount = bankAccount;
}

public Category getCategory() {
return category;
}

public void setCategory(Category category) {
this.category = category;
}

public CompanyType getCompanyType() {
return companyType;
}

public void setCompanyType(CompanyType companyType) {
this.companyType = companyType;
}

public Address getAddress() {
return address;
}

public void setAddress(Address address) {
this.address = address;
}

public void setBusinessAreaId(Integer businessAreaId) {
this.businessAreaId = businessAreaId;
}
public Integer getBusinessAreaId() {
return businessAreaId;
}

public Boolean getEmailOptOut() {
return emailOptOut;
}
public void setBusinessAreaId(Integer businessAreaId) {
this.businessAreaId = businessAreaId;
}

public void setEmailOptOut(Boolean emailOptOut) {
this.emailOptOut = emailOptOut;
}
public Boolean getEmailOptOut() {
return emailOptOut;
}

public Boolean getAutoApprove() {
return autoApprove;
}
public void setEmailOptOut(Boolean emailOptOut) {
this.emailOptOut = emailOptOut;
}

public void setAutoApprove(Boolean autoApprove) {
this.autoApprove = autoApprove;
}
public Boolean getAutoApprove() {
return autoApprove;
}

public String getToken() {
return token;
}
public void setAutoApprove(Boolean autoApprove) {
this.autoApprove = autoApprove;
}

public void setToken(String token) {
this.token = token;
}
public Boolean getAutoTransfer() {
return autoTransfer;
}

public String getStatus() {
return status;
}
public void setAutoTransfer(Boolean autoTransfer) {
this.autoTransfer = autoTransfer;
}

public void setStatus(String status) {
this.status = status;
}
public String getToken() {
return token;
}

public void setToken(String token) {
this.token = token;
}

public String getStatus() {
return status;
}

public void setStatus(String status) {
this.status = status;
}
}
Loading

0 comments on commit 8dfd9a1

Please sign in to comment.