mirror of
https://github.com/google/nomulus
synced 2026-01-06 21:47:31 +00:00
Remove useless createdRepoId from logging
It is no longer needed since we don't do log-replay and it's annoying to support in the flat flows. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=135805088
This commit is contained in:
@@ -99,14 +99,6 @@ public class EppResponse extends ImmutableObject implements ResponseOrGreeting {
|
||||
@XmlTransient
|
||||
DateTime executionTime;
|
||||
|
||||
/**
|
||||
* The repository id of a new object if this is a create response, or null.
|
||||
*
|
||||
* <p>This is for logging purposes only and is not returned to the user.
|
||||
*/
|
||||
@XmlTransient
|
||||
String createdRepoId;
|
||||
|
||||
/**
|
||||
* Information about messages queued for retrieval. This may appear in response to any EPP message
|
||||
* (if messages are queued), but in practice this will only be set in response to a poll request.
|
||||
@@ -170,10 +162,6 @@ public class EppResponse extends ImmutableObject implements ResponseOrGreeting {
|
||||
return executionTime;
|
||||
}
|
||||
|
||||
public String getCreatedRepoId() {
|
||||
return createdRepoId;
|
||||
}
|
||||
|
||||
public ImmutableList<? extends ResponseData> getResponseData() {
|
||||
return resData;
|
||||
}
|
||||
@@ -238,11 +226,6 @@ public class EppResponse extends ImmutableObject implements ResponseOrGreeting {
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setCreatedRepoId(String createdRepoId) {
|
||||
getInstance().createdRepoId = createdRepoId;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Builder setResData(@Nullable ImmutableList<? extends ResponseData> resData) {
|
||||
getInstance().resData = resData;
|
||||
return this;
|
||||
|
||||
Reference in New Issue
Block a user