001/* 002 * The contents of this file are subject to the license and copyright 003 * detailed in the LICENSE and NOTICE files at the root of the source 004 * tree. 005 */ 006package org.fcrepo.http.commons.webxml.bind; 007 008import javax.xml.bind.annotation.XmlElement; 009 010/** 011 * <p>Abstract Displayable class.</p> 012 * 013 * @author awoods 014 */ 015public abstract class Displayable extends Describable { 016 017 @XmlElement(namespace = "http://java.sun.com/xml/ns/javaee", 018 name = "display-name") 019 String displayName; 020 021 public String displayName() { 022 return this.displayName; 023 } 024}