Skip to content
Merged
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 @@ -17,7 +17,7 @@ public class ResourceReference {
/**
* The resource id.
*/
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
@JsonProperty(value = "id")
private String id;

/**
Expand All @@ -41,6 +41,17 @@ public String id() {
return this.id;
}

/**
* Set the resource id.
*
* @param id the id value to set
* @return the ResourceReference object itself.
*/
public ResourceReference withId(String id) {
this.id = id;
return this;
}

/**
* Get gets the resource name.
*
Expand Down