@GET
@Path("timestamp/{timestamp}/mount/{mount}")
@Produces({"application/xml","text/xml"})
public String getByTimestampMountXML( @PathParam ("timestamp") String timestamp,
@PathParam ("mount") String mount ) {
ClusterDisk model = ClusterDiskHome.find(timestamp, mount);
return convertToXml(model);
}