com.coveo.pushapiclient.SecurityIdentityBatchConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of push-api-client.java Show documentation
Show all versions of push-api-client.java Show documentation
Coveo Push API client. See more on https://github.com/coveo/push-api-client.java
The newest version!
package com.coveo.pushapiclient;
import java.util.Objects;
/**
* See [Manage Batches of Security Identities](https://docs.coveo.com/en/55).
*/
public class SecurityIdentityBatchConfig {
private final String fileId;
private final Long orderingId;
public SecurityIdentityBatchConfig(String fileId, Long orderingId) {
this.fileId = fileId;
this.orderingId = orderingId;
}
public String getFileId() {
return fileId;
}
public Long getOrderingId() {
return orderingId;
}
@Override
public String toString() {
return "SecurityIdentityBatchConfig[" +
"fileId='" + fileId + '\'' +
", orderingId=" + orderingId +
']';
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
SecurityIdentityBatchConfig that = (SecurityIdentityBatchConfig) obj;
return Objects.equals(fileId, that.fileId) && Objects.equals(orderingId, that.orderingId);
}
@Override
public int hashCode() {
return Objects.hash(fileId, orderingId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy