public Shuttle initShuttle(String name, int shuttleId)
{
try
{
ShuttleTemplate template = ShuttleTemplateHolder.getInstance().getTemplate(shuttleId);
Shuttle shuttle = new Shuttle(IdFactory.getInstance().getNextId(), template);
shuttle.setName(name);
addBoat(shuttle);
return shuttle;
}
catch (Exception e)
{