import lombok.Data;
import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Developer {
private String employment;
private String location;
}
@Data
@NoArgsConstructor
public class Profile extends Developer {
private String name;
public Profile() {
super("Software Engineer at PicPay / Fintech", "Rio de Janeiro / RJ");
this.name = "Pedro Ricardo";
}
}
👨💻
I debug, therefore I am.
Software Engineer @PicPay
- Rio de Janeiro, Rio de Janeiro, Brasil
- http://phricardo.com/
- phricardorj
- in/phricardorj
Popular repositories Loading
-
SpringCleanBlocks
SpringCleanBlocks PublicThis API is built in Java with Clean Architecture concepts.
Java
-
jpa-hibernate-persistence
jpa-hibernate-persistence PublicExploring JPA and some persistence concepts
Java
-
schedule-technicians-api
schedule-technicians-api PublicThis API allows the registration of technicians and customers to schedule a technical visit at the customer's address.
Java
-
-
spring-kafka
spring-kafka PublicI taught about messaging with Kafka to a group of friends. This is the material produced.
Java
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


