001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.plugins.streetside.utils;
003
004import java.util.UUID;
005
006/**
007 * 
008 */
009public class StreetsideSequenceIdGenerator {
010  
011  public static String generateId() {
012    
013    return UUID.randomUUID().toString();
014    
015  }
016
017}