All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.palantir.atlasdb.timelock.api.UnsuccessfulLockResponse Maven / Gradle / Ivy

There is a newer version: 0.1152.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy