mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-17 23:29:50 +00:00
parse 'unresolvable address' (forgot)
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@351 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
0a148cef5c
commit
d3eb6824a0
1 changed files with 2 additions and 1 deletions
|
@ -27,10 +27,11 @@ public final class QueryConnectionsResult implements Serializable
|
|||
{
|
||||
public enum Status
|
||||
{
|
||||
OK, AMBIGUOUS, TOO_CLOSE, NO_CONNECTIONS, INVALID_DATE, SERVICE_DOWN;
|
||||
OK, AMBIGUOUS, TOO_CLOSE, UNRESOLVABLE_ADDRESS, NO_CONNECTIONS, INVALID_DATE, SERVICE_DOWN;
|
||||
}
|
||||
|
||||
public static final QueryConnectionsResult TOO_CLOSE = new QueryConnectionsResult(Status.TOO_CLOSE);
|
||||
public static final QueryConnectionsResult UNRESOLVABLE_ADDRESS = new QueryConnectionsResult(Status.UNRESOLVABLE_ADDRESS);
|
||||
public static final QueryConnectionsResult NO_CONNECTIONS = new QueryConnectionsResult(Status.NO_CONNECTIONS);
|
||||
public static final QueryConnectionsResult INVALID_DATE = new QueryConnectionsResult(Status.INVALID_DATE);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue