-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #282 from bcgov/grad-release
Grad release 1.23
- Loading branch information
Showing
15 changed files
with
629 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,4 +52,7 @@ target/ | |
build/ | ||
|
||
### VS Code ### | ||
.vscode/ | ||
.vscode/ | ||
|
||
### Local dev ### | ||
**/application-local.yaml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
api/src/main/java/ca/bc/gov/educ/api/grad/report/model/dto/Address.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
package ca.bc.gov.educ.api.grad.report.model.dto; | ||
|
||
import java.io.Serializable; | ||
|
||
public class Address implements Serializable { | ||
|
||
private static final long serialVersionUID = 2L; | ||
|
||
private String streetLine1; | ||
private String streetLine2; | ||
private String streetLine3; | ||
private String city; | ||
private String region; | ||
private String country; | ||
private String code; | ||
|
||
public String getStreetLine1() { | ||
return streetLine1; | ||
} | ||
|
||
public void setStreetLine1(String value) { | ||
this.streetLine1 = value; | ||
} | ||
|
||
public String getStreetLine2() { | ||
return streetLine2; | ||
} | ||
|
||
public void setStreetLine2(String value) { | ||
this.streetLine2 = value; | ||
} | ||
|
||
public String getStreetLine3() { | ||
return streetLine3; | ||
} | ||
|
||
public void setStreetLine3(String streetLine3) { | ||
this.streetLine3 = streetLine3; | ||
} | ||
|
||
public String getCity() { | ||
return city; | ||
} | ||
|
||
public void setCity(String value) { | ||
this.city = value; | ||
} | ||
|
||
public String getRegion() { | ||
return region; | ||
} | ||
|
||
public void setRegion(String value) { | ||
this.region = value; | ||
} | ||
|
||
public String getCountry() { | ||
return country; | ||
} | ||
|
||
public void setCountry(String value) { | ||
this.country = value; | ||
} | ||
|
||
public String getCode() { | ||
return code; | ||
} | ||
|
||
public void setCode(String value) { | ||
this.code = value; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.