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 Describable class.</p> 012 * 013 * @author awoods 014 */ 015public abstract class Describable { 016 017 @XmlElement(namespace = "http://java.sun.com/xml/ns/javaee", 018 name = "description") 019 String description; 020 021 public String getDescription() { 022 return description; 023 } 024 025}