new interface method to determine typical products of a network

This commit is contained in:
Andreas Schildbach 2013-03-15 10:52:00 +01:00
parent 29f719db5a
commit 4a65796401
16 changed files with 124 additions and 0 deletions

View file

@ -18,6 +18,7 @@
package de.schildbach.pte;
import java.io.IOException;
import java.util.Collection;
import java.util.List;
import java.util.Locale;
@ -188,6 +189,12 @@ public class NriProvider extends AbstractHafasProvider
return jsonGetStops(uri);
}
@Override
public Collection<Product> defaultProducts()
{
return Product.ALL;
}
@Override
protected char normalizeType(final String type)
{