blob: 052c0efdd2a0f24ff64e974310f96c37e78d8d06 [file] [log] [blame]
/*
* Copyright (C) 2010-2011 The University of Manchester
*
* See the file "LICENSE" for license terms.
*/
package org.taverna.server.port_description;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
@XmlType(name = "LeafValue")
public class LeafValue extends AbstractValue {
@XmlAttribute(name = "contentFile")
public String fileName;
@XmlAttribute(name = "contentType")
public String contentType;
@XmlAttribute(name = "contentByteLength")
public Long byteLength;
}