Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,10 @@ public void setLastName(String lastName) {
}

/**
* The location of the financier.
* The city and country/region where the financier is currently located. For example: Chicago, USA
*
* @param location The location of the financier.
* @param location The city and country/region where the financier is currently located. For
* example: Chicago, USA
* @return the current {@code Financier} instance, allowing for method chaining
*/
public Financier location(String location) {
Expand All @@ -150,9 +151,10 @@ public Financier location(String location) {
}

/**
* The location of the financier.
* The city and country/region where the financier is currently located. For example: Chicago, USA
*
* @return location The location of the financier.
* @return location The city and country/region where the financier is currently located. For
* example: Chicago, USA
*/
@JsonProperty(JSON_PROPERTY_LOCATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand All @@ -161,9 +163,10 @@ public String getLocation() {
}

/**
* The location of the financier.
* The city and country/region where the financier is currently located. For example: Chicago, USA
*
* @param location The location of the financier.
* @param location The city and country/region where the financier is currently located. For
* example: Chicago, USA
*/
@JsonProperty(JSON_PROPERTY_LOCATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand Down
Loading