renamed VVV to VMOBIL

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@655 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2011-05-20 06:09:07 +00:00
parent 39e343d3ab
commit 2756f8e9dd
3 changed files with 8 additions and 7 deletions

View file

@ -26,7 +26,7 @@ public enum NetworkId
DB, BVG, VBB, RMV, VRT, MVV, INVG, AVV, VMV, SH, GVH, BSVAG, BSAG, VBN, NASA, VVO, VMS, VGS, VRR, MVG, VRN, VVS, NALDO, DING, KVV, VVM, VAGFR, NVBW, DB, BVG, VBB, RMV, VRT, MVV, INVG, AVV, VMV, SH, GVH, BSVAG, BSAG, VBN, NASA, VVO, VMS, VGS, VRR, MVG, VRN, VVS, NALDO, DING, KVV, VVM, VAGFR, NVBW,
// Austria // Austria
OEBB, VOR, LINZ, SVV, VVV, IVB, STV, OEBB, VOR, LINZ, SVV, VMOBIL, IVB, STV,
// Switzerland // Switzerland
SBB, BVB, VBL, ZVV, SBB, BVB, VBL, ZVV,

View file

@ -24,14 +24,15 @@ import de.schildbach.pte.dto.Location;
import de.schildbach.pte.dto.LocationType; import de.schildbach.pte.dto.LocationType;
/** /**
* Verkehrsverbund Vorarlberg
* @author Andreas Schildbach * @author Andreas Schildbach
*/ */
public class VvvProvider extends AbstractEfaProvider public class VmobilProvider extends AbstractEfaProvider
{ {
public static final NetworkId NETWORK_ID = NetworkId.VVV; public static final NetworkId NETWORK_ID = NetworkId.VMOBIL;
private final static String API_BASE = "http://efaneu.vmobil.at/vvvmobile/"; private final static String API_BASE = "http://efaneu.vmobil.at/vvvmobile/";
public VvvProvider() public VmobilProvider()
{ {
super(API_BASE, null); super(API_BASE, null);
} }

View file

@ -21,7 +21,7 @@ import java.util.List;
import org.junit.Test; import org.junit.Test;
import de.schildbach.pte.VvvProvider; import de.schildbach.pte.VmobilProvider;
import de.schildbach.pte.dto.Location; import de.schildbach.pte.dto.Location;
import de.schildbach.pte.dto.LocationType; import de.schildbach.pte.dto.LocationType;
import de.schildbach.pte.dto.NearbyStationsResult; import de.schildbach.pte.dto.NearbyStationsResult;
@ -30,9 +30,9 @@ import de.schildbach.pte.dto.QueryDeparturesResult;
/** /**
* @author Andreas Schildbach * @author Andreas Schildbach
*/ */
public class VvvProviderLiveTest public class VmobilProviderLiveTest
{ {
private final VvvProvider provider = new VvvProvider(); private final VmobilProvider provider = new VmobilProvider();
@Test @Test
public void autocompleteIncomplete() throws Exception public void autocompleteIncomplete() throws Exception