com.palantir.atlasdb.timelock.api.UnsuccessfulLockResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timelock-api-objects Show documentation
Show all versions of timelock-api-objects Show documentation
Palantir open source project
package com.palantir.atlasdb.timelock.api;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.palantir.logsafe.Safe;
import javax.annotation.processing.Generated;
@Safe
@JsonSerialize
@JsonIgnoreProperties(ignoreUnknown = true)
@Generated("com.palantir.conjure.java.types.BeanGenerator")
public final class UnsuccessfulLockResponse {
private static final UnsuccessfulLockResponse INSTANCE = new UnsuccessfulLockResponse();
private UnsuccessfulLockResponse() {}
@Override
@Safe
public String toString() {
return "UnsuccessfulLockResponse{}";
}
@JsonCreator(mode = JsonCreator.Mode.DELEGATING)
public static UnsuccessfulLockResponse of() {
return INSTANCE;
}
}