com.sun.xml.ws.api.security.trust.WSTrustContract Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-osgi Show documentation
Show all versions of webservices-osgi Show documentation
Metro Web Services Runtime OSGi Bundle
The newest version!
/*
* Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.api.security.trust;
import com.sun.xml.ws.api.security.trust.config.STSConfiguration;
import com.sun.xml.ws.security.IssuedTokenContext;
import java.util.Map;
/**
* The Contract (SPI) to be used by an STS to handle an Incoming WS-Trust request and
* send the corresponding response.
*/
public interface WSTrustContract {
void init(STSConfiguration config);
/** Issue a Token */
V issue(K rst, IssuedTokenContext context) throws WSTrustException;
/** Renew a Token */
V renew(K rst, IssuedTokenContext context)
throws WSTrustException;
/** Cancel a Token */
V cancel(K rst, IssuedTokenContext context, Map map)
throws WSTrustException;
/** Validate a Token */
V validate(K request, IssuedTokenContext context)
throws WSTrustException;
/**
* handle an unsolicited RSTR like in the case of
* Client Initiated Secure Conversation.
*/
void handleUnsolicited(V rstr, IssuedTokenContext context)
throws WSTrustException;
}