Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
d658380
Refactored API, added abstract http class. Implemented serviceCreate …
sebastianmacarescu Jun 16, 2016
60157ca
Implemented calls for Client API and tests, refactored something in s…
sebastianmacarescu Jun 21, 2016
5ae8a7f
Implemented Resource api calls and testing. TODO: Add remaining calls…
sebastianmacarescu Jun 27, 2016
3ff2e31
Added Abstract Services, Refactored the into separate package names. …
sebastianmacarescu Jul 8, 2016
c6596b8
Refactored CacheService to include service provider and added some mo…
sebastianmacarescu Jul 8, 2016
9b87489
[DROID-38] Added RxJava Observable wrappers over api calls
sebastianmacarescu Jul 8, 2016
d2d30ee
Removed sun dependencies for java logger
sebastianmacarescu Jul 22, 2016
282cf57
Implemented EventChainAPI + testing
sebastianmacarescu Jul 22, 2016
13e1afd
Implemented EventGroupAPI + testing
sebastianmacarescu Jul 22, 2016
d9492f8
Finished Clinic Model + testing
sebastianmacarescu Jul 22, 2016
80c1840
Finished Schedule model + testing.
sebastianmacarescu Jul 22, 2016
15da275
Merge branch 'model_testing' into api_calls
sebastianmacarescu Jul 22, 2016
a549a80
Implemented ScheduleAPI + testing
sebastianmacarescu Jul 22, 2016
05da858
Implemented AddressAPI + testing.
sebastianmacarescu Jul 22, 2016
0152e45
Implemented AdministratorAPI + testing
sebastianmacarescu Jul 22, 2016
bdb7224
Implemented PersonAPI + testing. Renamed from People to Person
sebastianmacarescu Jul 22, 2016
77e205d
Implemented ClinicAPI + testing
sebastianmacarescu Jul 22, 2016
f8352ce
Implemented PurchaseAPI + testing
sebastianmacarescu Jul 22, 2016
962b090
Implemented QuestionAPI + test
sebastianmacarescu Jul 22, 2016
e886757
Implemented SessionAPI + testing
sebastianmacarescu Jul 22, 2016
241e5b3
Implemented SlotAPI + testing
sebastianmacarescu Jul 22, 2016
f8b2430
Fix address api null
sebastianmacarescu Jul 22, 2016
72dceec
added cache expiry
sebastianmacarescu Jul 28, 2016
3a4dcd7
Changed package name, added clear cache option and temporary disable …
sebastianmacarescu Aug 1, 2016
3db1a83
#DROID-46 - Implemented cache invalidation logic by api TAG. Implemen…
sebastianmacarescu Aug 17, 2016
251221a
Added clear cache per TAG
sebastianmacarescu Aug 17, 2016
5497f5b
implemented administrator and login api calls
sebastianmacarescu Aug 19, 2016
d7eca1b
Added more calls and basic unittesting - booking, company, event/chains
sebastianmacarescu Aug 30, 2016
c4daeba
Logger service fixed not printing after newline. Booking params work
sebastianmacarescu Sep 16, 2016
df9e919
Implemented api call for booking update and unittesting
sebastianmacarescu Sep 27, 2016
d5a60c7
Fixed client list params and booking edit params.
SergiuJuravleASSIST Nov 9, 2016
578c066
Fixed something...
SergiuJuravleASSIST Nov 9, 2016
d6e2993
Fixed something...
SergiuJuravleASSIST Nov 9, 2016
ad3ba20
Merge branch 'api_calls' of git.assist.ro:BookingBug/java-sdk into ap…
SergiuJuravleASSIST Nov 9, 2016
f8e97aa
Revert "Fixed something..."
SergiuJuravleASSIST Nov 9, 2016
49745d5
Fixed cusomer list pagination.
SergiuJuravleASSIST Nov 10, 2016
f82ca40
Added tests for sso generator
sebastianmacarescu Nov 14, 2016
bcbd4b0
Merge branch 'api_calls' of git.assist.ro:BookingBug/java-sdk into ap…
sebastianmacarescu Nov 16, 2016
aebd386
Switched to new maven repo
sebastianmacarescu Nov 16, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: java

jdk:
- openjdk7
- oraclejdk7
- oraclejdk8

script: mvn clean test
98 changes: 91 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<modelVersion>4.0.0</modelVersion>

<groupId>BookingBug-SDK</groupId>
<artifactId>BookingBug-SDK</artifactId>
<version>1.9</version>
<artifactId>BookingBug-SDK2</artifactId>
<version>2.2</version>


<distributionManagement>
<repository>
<id>bintray-acornel-bb-java</id>
<name>acornel-bb-java</name>
<url>https://api.bintray.com/maven/acornel/bb-java/bookingbug-java/;publish=1</url>
<id>bintray-bookingbug-bookingbug-java</id>
<name>BookingBug-bookingbug-java</name>
<url>https://api.bintray.com/maven/bookingbug/bookingbug-java/BookingBug-JavaSDK/;publish=1</url>
</repository>
</distributionManagement>

Expand Down Expand Up @@ -113,16 +113,100 @@
<resource>
<directory>src/test/resources</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>1.8</source>
<target>1.8</target>
<testSource>1.7</testSource>
<testTarget>1.7</testTarget>
</configuration>
</plugin>

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>

<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>net.orfjackal.retrolambda</groupId>
<artifactId>retrolambda-maven-plugin</artifactId>
<version>2.3.0</version>
<executions>
<execution>
<goals>
<goal>process-main</goal>
<goal>process-test</goal>
</goals>
</execution>
</executions>
<configuration>
<target>${testBytecodeTarget}</target>
<defaultMethods>${testDefaultMethods}</defaultMethods>
<fork>${testFork}</fork>
</configuration>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>signature-check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java17</artifactId>
<version>1.0</version>
</signature>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>noDefaultMethods</id>
<properties>
<testDefaultMethods>false</testDefaultMethods>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<testExcludes>
<pattern>**/DefaultMethodsTest.java</pattern>
<pattern>**/InterfaceStaticMethodsTest.java</pattern>
</testExcludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
22 changes: 0 additions & 22 deletions src/main/bookingbugAPI/api/API.java

This file was deleted.

133 changes: 0 additions & 133 deletions src/main/bookingbugAPI/api/AbstractAPI.java

This file was deleted.

Loading