google-nomulus/java/google/registry/model/smd/SignedMark.java
Michael Muller c458c05801 Rename Java packages to use the .google TLD
The dark lord Gosling designed the Java package naming system so that
ownership flows from the DNS system. Since we own the domain name
registry.google, it seems only appropriate that we should use
google.registry as our package name.
2016-05-13 20:04:42 -04:00

86 lines
2.4 KiB
Java

// Copyright 2016 The Domain Registry Authors. All Rights Reserved.
//
// 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 google.registry.model.smd;
import google.registry.model.ImmutableObject;
import google.registry.model.mark.Mark;
import org.joda.time.DateTime;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlRootElement;
/**
* Represents an XML fragment that is digitally signed by the TMCH to prove ownership over a mark.
**/
@XmlRootElement(name = "signedMark")
public class SignedMark extends ImmutableObject implements AbstractSignedMark {
/** XSD ID for use with an IDREF URI from the Signature element. */
@XmlAttribute(name = "id")
String xsdId;
/**
* Signed mark identifier. This is a concatenation of the local identifier, followed by a hyphen,
* followed by the issuer identifier.
*/
String id;
/** Information of the issuer of the mark registration. */
IssuerInfo issuerInfo;
/** Creation time of this signed mark. */
@XmlElement(name = "notBefore")
DateTime creationTime;
/** Expiration time of this signed mark. */
@XmlElement(name = "notAfter")
DateTime expirationTime;
/** Mark information. */
@XmlElementRef(type = Mark.class)
Mark mark;
/**
* Digital signature of the signed mark. Note that we don't unmarshal this data, as there is
* already an existing Java library to handle validation of this signature.
*
* @see javax.xml.crypto.dsig.XMLSignature
*/
@XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#")
Object xmlSignature;
public String getId() {
return id;
}
public DateTime getCreationTime() {
return creationTime;
}
public DateTime getExpirationTime() {
return expirationTime;
}
public Mark getMark() {
return mark;
}
public boolean hasSignature() {
return xmlSignature != null;
}
}