| AdpApiExample |
Example demonstrating how to call the ADP API using:
1.
|
| FakeJsonApiExample |
Example that demonstrates fetching data from multiple endpoints of a Fake-JSON API
|
| FluentApiExample |
Example demonstrating the Result-based API for developers who prefer
a more declarative approach without exceptions.
|
| HelloWorld |
Main example runner that presents a menu of examples to run
|
| JsonTodoExample |
Example that demonstrates fetching a Todo from JSONPlaceholder API
|
| NasaApodExample |
Example demonstrating how to fetch NASA's Astronomy Picture of the Day (APOD)
using RocketRest's fluent API.
|
| NasaApodExample.ApodResponse |
POJO class representing the NASA APOD API response
|
| PokeApiExample |
Example demonstrating how to use the PokéAPI with RocketRest's fluent API,
including pagination support.
|
| PokeApiExample.AbilityInfo |
Ability information for a Pokémon
|
| PokeApiExample.AbilityListResponse |
Response for the Abilities list endpoint
|
| PokeApiExample.DamageRelations |
Damage relations information for a type
|
| PokeApiExample.MoveInfo |
Move information for a Pokémon
|
| PokeApiExample.NamedResource |
Named resource (name and URL) used throughout the API
|
| PokeApiExample.PaginatedResponse<T> |
Base response for paginated results
|
| PokeApiExample.PokemonDetailResponse |
Detailed Pokémon response
|
| PokeApiExample.PokemonListResponse |
Response for the Pokémon list endpoint
|
| PokeApiExample.StatInfo |
Stat information for a Pokémon
|
| PokeApiExample.TypeDetailResponse |
Response for the Type details endpoint
|
| PokeApiExample.TypeInfo |
Type information for a Pokémon
|
| PokeApiExample.TypeListResponse |
Response for the Types list endpoint
|
| RocketRestCircuitBreakerExample |
Example demonstrating the Circuit Breaker pattern using RocketRest
with https://httpstat.us/ as a test service.
|
| RocketRestFluentExample |
Example demonstrating the Fluent API interface with Result pattern
using the main RocketRest class.
|
| SapIdpExample |
Example demonstrating SAP IDP authentication and API usage.
|
| Todo |
Model class for JSON response from JSONPlaceholder Todo API
|
| WeatherExample |
Example demonstrating how to use RocketRest's async API to fetch weather data
from wttr.in service.
|
| WeatherExample.Astronomy |
Astronomy information
|
| WeatherExample.CurrentCondition |
Current weather conditions
|
| WeatherExample.NearestArea |
Nearest area information
|
| WeatherExample.Value |
Generic value class for nested structures
|
| WeatherExample.Weather |
Weather forecast information
|
| WeatherExample.WeatherDesc |
Weather description
|
| WeatherExample.WeatherResponse |
Main weather response class
|