public interface ReservationResultHandler
Authorizer
object to deliver the results of
servicing a client's reservation request.Modifier and Type | Method and Description |
---|---|
void |
handleFailure(String failure)
Deliver the results of unsuccessfully processing a reservation request.
|
void |
handleReservation(String actor,
String context,
String name,
String hostport,
String auth)
Deliver the results of successfully processing a reservation request.
|
void handleReservation(String actor, String context, String name, String hostport, String auth)
actor
- Actor name to connect as or null to indicate that the
originally requested ID is appropriate to use.context
- Name of the context to actually enter.name
- Human readable label to present, or null if not applicable.hostport
- String, in the form host:port, identifying the host and
port number to connect to.auth
- Authorization code to tender to the indicated host for
admission.void handleFailure(String failure)
failure
- Error message in the case of failure or null in case of
success.Copyright © 2017. All rights reserved.