This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Rider { | |
| @NonNull private String firstName; | |
| @NonNull private String lastName; | |
| public Rider(@NonNull String firstname, @NonNull String lastName) { | |
| this.firstName = firstName; | |
| this.lastName = lastName; | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class UsingRave { | |
| public static void main(String[] args) { | |
| MyModel myModel = new MyModel(“Validate me please!”); | |
| try { | |
| Rave.getInstance().validate(myModel); | |
| } catch (RaveException e) { | |
| // This response didn't pass RAVE validation, throw an exception. | |
| throw new RuntimeException(e); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * A converter factory that uses Rave to validate responses from the network. In the event that a response doesn't | |
| * validate an exception is thrown to consumers. | |
| * | |
| * NOTE: This is a forwarding converter that delegates to another converter that should convert Java Objects | |
| * into JSON and back. This converter must registered to your Retrofit instance before any other converter it might | |
| * delegate to. | |
| */ | |
| final class RaveConverterFactory extends Converter.Factory { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.uber.retrofit2.adapters.network.exception; | |
| import android.support.annotation.NonNull; | |
| import java.io.IOException; | |
| import okhttp3.Call; | |
| import okhttp3.Callback; | |
| import okhttp3.Request; |
NewerOlder