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

tech.ytsaurus.client.rpc.ServiceTicketFixedAuth Maven / Gradle / Ivy

The newest version!
package tech.ytsaurus.client.rpc;

public class ServiceTicketFixedAuth implements ServiceTicketAuth {
    private final String ticket;

    public ServiceTicketFixedAuth(String ticket) {
        this.ticket = ticket;
    }

    @Override
    public String issueServiceTicket() {
        return ticket;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy