io.crossbar.autobahn.wamp.auth.TicketAuth Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autobahn-java Show documentation
Show all versions of autobahn-java Show documentation
WebSocket & WAMP for Java8+
The newest version!
///////////////////////////////////////////////////////////////////////////////
//
// AutobahnJava - http://crossbar.io/autobahn
//
// Copyright (c) Crossbar.io Technologies GmbH and contributors
//
// Licensed under the MIT License.
// http://www.opensource.org/licenses/mit-license.php
//
///////////////////////////////////////////////////////////////////////////////
package io.crossbar.autobahn.wamp.auth;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import io.crossbar.autobahn.wamp.interfaces.IAuthenticator;
import io.crossbar.autobahn.wamp.types.Challenge;
import io.crossbar.autobahn.wamp.types.ChallengeResponse;
import io.crossbar.autobahn.wamp.Session;
public class TicketAuth implements IAuthenticator {
public static final String authmethod = "ticket";
public final String authid;
public final Map authextra;
public final String ticket;
public TicketAuth(String authid, String ticket) {
this(authid, ticket, null);
}
public TicketAuth(String authid, String ticket, Map authextra) {
this.authid = authid;
this.ticket = ticket;
this.authextra = authextra;
}
public CompletableFuture onChallenge(Session session, Challenge challenge) {
return CompletableFuture.completedFuture(new ChallengeResponse(ticket, authextra));
}
@Override
public String getAuthMethod() {
return authmethod;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy