Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding the Entities for Client, Portfolio and Security #68

Open
wants to merge 1 commit into
base: flow
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 96 additions & 0 deletions src/main/java/com/wellsfargo/counselor/entity/Client.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
package com.wellsfargo.counselor.entity;


import jakarta.persistence.*;

@Entity
public class Client {

@Id
@GeneratedValue()
private long clientId;

@ManyToOne
@JoinColumn(name = "advisorId")
private Advisor advisor;

@Column(nullable = false)
private String firstName;

@Column(nullable = false)
private String lastName;

@Column(nullable = false)
private String address;

@Column(nullable = false)
private String phone;

@Column(nullable = false)
private String email;

protected Client() {

}

public Client(String firstName, String lastName, String email, String phone, String address, Advisor advisor) {
this.firstName = firstName;
this.lastName = lastName;
this.email = email;
this.phone = phone;
this.address = address;
this.advisor = advisor;
}

public Long getClientId() {
return clientId;
}

public Advisor getAdvisorId() {
return advisor;
}

public void setAdvisor(Advisor advisor) {
this.advisor = advisor;
}

public String getFirstName() {
return firstName;
}

public void setFirstName(String firstName) {
this.firstName = firstName;
}

public String getLastName() {
return lastName;
}

public void setLastName(String lastName) {
this.lastName = lastName;
}

public String getAddress() {
return address;
}

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

public String getPhone() {
return phone;
}

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

public String getEmail() {
return email;
}

public void setEmail(String email) {
this.email = email;
}
}
44 changes: 44 additions & 0 deletions src/main/java/com/wellsfargo/counselor/entity/Portfolio.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
package com.wellsfargo.counselor.entity;


import jakarta.persistence.*;

@Entity
public class Portfolio {

@Id
@GeneratedValue()
private long portfolioId;

@ManyToOne
@JoinColumn(name = "clientId", nullable = false)
private Client client;

@Column(nullable = false)
private String creationDate;

protected Portfolio() {

}

public Portfolio(Client client, String creationDate) {
this.client = client;
this.creationDate = creationDate;
}

public String getCreationDate() {
return creationDate;
}

public void setCreationDate(String creationDate) {
this.creationDate = creationDate;
}

public long getPortfolioId() {
return portfolioId;
}

public Client getClient() {
return client;
}
}
91 changes: 91 additions & 0 deletions src/main/java/com/wellsfargo/counselor/entity/Security.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
package com.wellsfargo.counselor.entity;


import jakarta.persistence.*;

@Entity
public class Security {

@Id
@GeneratedValue()
private long securityId;

@ManyToOne
@JoinColumn(name = "portfolioId")
private Portfolio portfolio;

@Column(nullable = false)
private String name;

@Column(nullable = false)
private String category;

@Column(nullable = false)
private long purchasePrice;

@Column(nullable = false)
private String purchaseDate;

@Column(nullable = false)
private long quantity;

protected Security() {

}

public Security(String name, String category, long purchasePrice, String purchaseDate, long quantity) {
this.name = name;
this.category = category;
this.purchasePrice = purchasePrice;
this.purchaseDate = purchaseDate;
this.quantity = quantity;
}

public long getSecurityId() {
return securityId;
}

public Portfolio getPortfolio() {
return portfolio;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public String getCategory() {
return category;
}

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

public long getPurchasePrice() {
return purchasePrice;
}

public void setPurchasePrice(long purchasePrice) {
this.purchasePrice = purchasePrice;
}

public String getPurchaseDate() {
return purchaseDate;
}

public void setPurchaseDate(String purchaseDate) {
this.purchaseDate = purchaseDate;
}

public long getQuantity() {
return quantity;
}

public void setQuantity(long quantity) {
this.quantity = quantity;
}
}