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

org.apache.ws.security.message.WSSecTimestamp Maven / Gradle / Ivy

Go to download

Apache WSS4J is an implementation of the Web Services Security (WS-Security) being developed at OASIS Web Services Security TC. WSS4J is a primarily a Java library that can be used to sign and verify SOAP Messages with WS-Security information. WSS4J will use Apache Axis and Apache XML-Security projects and will be interoperable with JAX-RPC based server/clients and .NET server/clients.

There is a newer version: 1.6.19
Show newest version
/*
 * Copyright  2003-2005 The Apache Software Foundation.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 *
 */

package org.apache.ws.security.message;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.ws.security.message.token.Timestamp;
import org.apache.ws.security.util.WSSecurityUtil;
import org.w3c.dom.Document;
import org.w3c.dom.Element;

/**
 * Builds a WS Timestamp and inserts it into the SOAP Envelope. Refer to the WS
 * specification 1.0. chapter 10 / appendix A.2
 * 
 * @author Christof Soehngen ([email protected]).
 * @author Werner Dittmann ([email protected]).
 */

public class WSSecTimestamp extends WSSecBase {
    private static Log log = LogFactory.getLog(WSSecTimestamp.class.getName());

    private Timestamp ts = null;

    private Document document = null;

    private int timeToLive = 300; // time between Created and Expires

    /**
     * Constructor.
     */
    public WSSecTimestamp() {
    }

    /**
     * Set the time to live. This is the time difference in seconds between the
     * Created and the Expires in
     * Timestamp. 

* * @param ttl * The time to live in second */ public void setTimeToLive(int ttl) { timeToLive = ttl; } /** * Creates a Timestamp element. * * The method prepares and initializes a WSSec Timestamp structure after the * relevant information was set. Before calling prepare() the * parameter such as timeToLive can be set if the deafult * value is not suitable. * * @param doc * The SOAP enevlope as W3C document */ public void prepare(Document doc) { document = doc; ts = new Timestamp(wssConfig.isPrecisionInMilliSeconds(), doc, timeToLive); String tsId = "Timestamp-" + ts.hashCode(); ts.setID(tsId); } /** * Prepends the Timestamp element to the elements already in the Security * header. * * The method can be called any time after prepare(). This * allows to insert the Timestamp element at any position in the Security * header. * * @param secHeader * The security header that holds the Signature element. */ public void prependToHeader(WSSecHeader secHeader) { WSSecurityUtil.prependChildElement(document, secHeader .getSecurityHeader(), ts.getElement(), false); } /** * Adds a new Timestamp to a soap envelope. * * A complete Timestamp is constructed and added to the * wsse:Security header. * * @param doc * The SOAP envelope as W3C document * @param secHeader * The security header that hold this Timestamp * @return Document with Timestamp added * @throws Exception */ public Document build(Document doc, WSSecHeader secHeader) { log.debug("Begin add timestamp..."); prepare(doc); prependToHeader(secHeader); return doc; } /** * Get the id generated during prepare(). * * Returns the the value of wsu:Id attribute of this Timestamp. * * @return Return the wsu:Id of this token or null if * prepareToken() was not called before. */ public String getId() { if (ts == null) { return null; } return ts.getID(); } /** * Get the timestamp element generated during prepare(). */ public Element getElement() { if (ts == null) { return null; } return ts.getElement(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy