GpxType gpxType = createGpxType();
gpxType.setMetadata(metadataType);
if (fileKey != null) {
RteType rteType = gpxFactory.createRteType();
LinkType linkType = gpxFactory.createLinkType();
linkType.setHref(FILES_URL + fileKey);
rteType.getLink().add(linkType);
gpxType.getRte().add(rteType);
}
return toXml(gpxType);