Uses of Class
citysdk.tourism.client.exceptions.UnknownErrorException

Packages that use UnknownErrorException
citysdk.tourism.client.parser Package for the library parsers and deserializers. 
citysdk.tourism.client.requests Package for the library client stub. 
citysdk.tourism.client.tests Package containing a few example tests 
 

Uses of UnknownErrorException in citysdk.tourism.client.parser
 

Methods in citysdk.tourism.client.parser that throw UnknownErrorException
 Category JsonParser.parseJsonAsCategory()
          Parses the JSON as a Category.
 Event JsonParser.parseJsonAsEvent()
          Parses the JSON as an Event.
 Deserializable JsonParser.parseJsonAsGeneric()
          Parses the JSON as a generic POI.
 ListEvent JsonParser.parseJsonAsListOfEvents()
          Parses the JSON as a ListEvent.
 ListPointOfInterest JsonParser.parseJsonAsListOfPois()
          Parses the JSON as a ListPointOfInterest.
 ListRoute JsonParser.parseJsonAsListOfRoutes()
          Parses the JSON as a ListRoute.
 ListPOIS JsonParser.parseJsonAsListPOIS()
          Parses the JSON as a ListPOIS.
 PointOfInterest JsonParser.parseJsonAsPointOfInterest()
          Parses the JSON as a PointOfInterest.
 Resources JsonParser.parseJsonAsResources()
          Parses the JSON as a Resources.
 Route JsonParser.parseJsonAsRoute()
          Parses the JSON as a Route.
 ListTag JsonParser.parseJsonAsTags()
          Parses the JSON as a ListTag.
 

Uses of UnknownErrorException in citysdk.tourism.client.requests
 

Methods in citysdk.tourism.client.requests that throw UnknownErrorException
 ListPOIS TourismClient.getByCode(java.lang.String code)
          Gets all POI-based objects containing the given code
 Category TourismClient.getCategories(ParameterList list)
          Returns the list of Category available.
 TourismClient TourismClientFactory.getClient(java.lang.String homeUrl)
          Gets a new TourismClient stub.
 Event TourismClient.getEvent(java.lang.String eventBase, java.lang.String eventId)
          Returns the description of a given Event.
 ListEvent TourismClient.getEventRelation(java.lang.String id, Term relation)
          Returns a list of Events with the given relation with the POI identified by id.
 ListEvent TourismClient.getEvents(ParameterList parameterList)
          Returns a list of Events following the desired parameters.
 POI TourismClient.getGeneric(java.lang.String base, java.lang.String id)
          Returns a generic object matching the given base and id
 PointOfInterest TourismClient.getPoi(java.lang.String poiBase, java.lang.String poiId)
          Returns the complete description of a given POI.
 ListPointOfInterest TourismClient.getPoiRelation(java.lang.String id, Term relation)
          Returns a list of Points of Interest with the given relation with the POI identified by id.
 ListPointOfInterest TourismClient.getPois(ParameterList parameterList)
          Returns a list of POIs following the desired parameters.
 Route TourismClient.getRoute(java.lang.String routeBase, java.lang.String routeId)
          Returns the description of a given Route and its POIs.
 ListRoute TourismClient.getRoutes(ParameterList parameterList)
          Returns a list of Routes following the desired parameters.
 ListTag TourismClient.getTags(ParameterList list)
          Returns the list of ListTag available.
 

Uses of UnknownErrorException in citysdk.tourism.client.tests
 

Methods in citysdk.tourism.client.tests that throw UnknownErrorException
 void CitySdkTests.testAvailableLanguages()
           
 void CitySdkTests.testCategories()
           
 void CitySdkTests.testCode()
           
 void CitySdkTests.testDataReader()
           
 void CitySdkTests.testListEvent()
           
 void CitySdkTests.testPoiWithId()