/* * Copyright [2005] [University Corporation for Advanced Internet Development, Inc.] * * 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.opensaml.common.impl; import org.joda.time.DateTime; import org.joda.time.DateTimeZone; import org.opensaml.common.SignableSAMLObject; import org.opensaml.xml.AbstractValidatingSignableXMLObject; import org.opensaml.xml.signature.Signature; /** * Abstract SAMLObject implementation that also implements {@link org.opensaml.xml.signature.SignableXMLObject}. */ public abstract class AbstractSignableSAMLObject extends AbstractValidatingSignableXMLObject implements SignableSAMLObject { /** * Constructor. * * @param namespaceURI the namespace the element is in * @param elementLocalName the local name of the XML element this Object represents * @param namespacePrefix the prefix for the given namespace */ protected AbstractSignableSAMLObject(String namespaceURI, String elementLocalName, String namespacePrefix) { super(namespaceURI, elementLocalName, namespacePrefix); } /** {@inheritDoc} */ public final boolean equals(Object obj) { if(obj == this){ return true; } return super.equals(obj); } /** * {@inheritDoc} * * When a signature is added, a default content reference that uses the ID of this object will be * created and added to the signature at the time of signing. See {@link SAMLObjectContentReference} * for the default digest algorithm and transforms that will be used. These default values may be * changed prior to marshalling this object. */ public void setSignature(Signature newSignature) { if(newSignature != null){ newSignature.getContentReferences().add(new SAMLObjectContentReference(this)); } super.setSignature(newSignature); } /** * A helper function for derived classes that checks to see if the old and new value are equal and if so releases * the cached dom. Derived classes are expected to use this thus: <code> * this.foo = prepareForAssignment(this.foo, foo); * </code> * * This method will do a (null) safe compare of the objects and will also invalidate the DOM if appropriate * * @param oldValue - current value * @param newValue - proposed new value * * @return The value to assign to the saved Object */ protected DateTime prepareForAssignment(DateTime oldValue, DateTime newValue) { DateTime utcValue = null; if (newValue != null) { utcValue = newValue.withZone(DateTimeZone.UTC); } return super.prepareForAssignment(oldValue, utcValue); } }