*/
public Relation(
long id, int version, Date timestamp, OsmUser user, long changesetId, Collection<Tag> tags,
List<RelationMember> members) {
// Chain to the more-specific constructor
this(id, version, new SimpleTimestampContainer(timestamp), user, changesetId, tags, members);
}