Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavofg1pontes committed Oct 7, 2024
1 parent fd2b1a6 commit 33429f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public void initialize() {

@Bean
public PaymentService preferenceService() {
System.out.println("AAAAAAAAAAAAAAAAAAAA: " + this.mercadoPagoAccessToken);
return PaymentServiceFactory.create(ticketGateway, ticketSaleGateway, paymentGateway);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@
import lombok.Getter;
import lombok.NoArgsConstructor;

import java.io.Serializable;
import java.time.LocalDateTime;

@Entity
@Table(name = "payments")
@NoArgsConstructor
@Getter
public class PaymentJpaEntity {
public class PaymentJpaEntity implements Serializable {
@Id
@Column(name = "id", nullable = false, unique = true, updatable = false)
private Long id;
Expand Down

0 comments on commit 33429f4

Please sign in to comment.