Skip to content

Commit

Permalink
javadoc for model objs
Browse files Browse the repository at this point in the history
  • Loading branch information
vsima committed Aug 21, 2014
1 parent b800fb0 commit ab7920d
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 13 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#Uber API client for Android & Java
This is an an api client library for Uber's new public api for Android and Java applications.
An api client library for Uber's public rest api for Android and Java applications. This library currently supports all api calls using server_token authentication:
* product types
* price estimates
* time estimates

##Build Status
[![Build Status](https://travis-ci.org/vsima/uber-java-client.svg?branch=master)](https://travis-ci.org/vsima/uber-java-client)
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'
apply plugin: 'jacoco'

sourceCompatibility = 1.7
version = '1.0'
version = '0.0.1'

repositories {
mavenCentral()
Expand All @@ -11,7 +11,7 @@ repositories {
dependencies {
compile 'com.squareup.retrofit:retrofit:1.5.1'
compile 'com.squareup.okhttp:okhttp:1.5.4'
compile 'com.netflix.rxjava:rxjava-core:0.17.0'
//compile 'com.netflix.rxjava:rxjava-core:0.17.0'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
test {
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/victorsima/uber/model/AccessToken.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

/**
* Uber Oauth2 AccessToken model obj
*/
public class AccessToken {

@Expose
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/victorsima/uber/model/Price.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.google.gson.annotations.SerializedName;

/**
* Created by victorsima on 8/20/14.
* Price model obj
*/
public class Price {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/victorsima/uber/model/Prices.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.List;

/**
* Created by victorsima on 8/20/14.
* Prices model obj
*/
public class Prices {

Expand Down
3 changes: 1 addition & 2 deletions src/main/java/com/victorsima/uber/model/Product.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
import com.google.gson.annotations.SerializedName;

/**
* Created by victorsima on 8/20/14.
* Product model obj
*/
public class Product {


@Expose
@SerializedName("product_id")
private String productId;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/victorsima/uber/model/Products.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import java.util.List;

/**
* Created by victorsima on 8/20/14.
* Products model obj
*/
public class Products {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/victorsima/uber/model/Time.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import com.google.gson.annotations.SerializedName;

/**
* Created by victorsima on 8/21/14.
* Time model obj
*/
public class Time {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/victorsima/uber/model/Times.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.List;

/**
* Created by victorsima on 8/21/14.
* Times model obj
*/
public class Times {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/victorsima/uber/model/UserActivity.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.victorsima.uber.model;

/**
* Created by victorsima on 8/20/14.
* Uber User Activity model obj
*/
public class UserActivity {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/victorsima/uber/model/UserProfile.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import com.google.gson.annotations.SerializedName;

/**
* Created by victorsima on 8/20/14.
* Uber User Profile model obj
*/
public class UserProfile {

Expand Down

0 comments on commit ab7920d

Please sign in to comment.