Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop:
  Renamed package.
  • Loading branch information
evanwong committed Oct 16, 2014
2 parents 71f0878 + 9199a53 commit 6780518
Show file tree
Hide file tree
Showing 19 changed files with 31 additions and 31 deletions.
4 changes: 0 additions & 4 deletions src/main/java/io/evanwong/hipchat/v2/commons/NoContent.java

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.evanwong.hipchat.v2;
package io.evanwong.oss.hipchat.v2;

import io.evanwong.hipchat.v2.rooms.GetAllRoomsRequestBuilder;
import io.evanwong.hipchat.v2.rooms.SendRoomNotificationRequestBuilder;
import io.evanwong.oss.hipchat.v2.rooms.GetAllRoomsRequestBuilder;
import io.evanwong.oss.hipchat.v2.rooms.SendRoomNotificationRequestBuilder;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.evanwong.hipchat.v2.commons;
package io.evanwong.oss.hipchat.v2.commons;

import org.apache.http.client.HttpClient;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.evanwong.hipchat.v2.commons;
package io.evanwong.oss.hipchat.v2.commons;

import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package io.evanwong.oss.hipchat.v2.commons;

public class NoContent {
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.evanwong.hipchat.v2.commons;
package io.evanwong.oss.hipchat.v2.commons;

public class PagingLinks {
private String self;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.evanwong.hipchat.v2.commons;
package io.evanwong.oss.hipchat.v2.commons;

import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpPost;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.evanwong.hipchat.v2.commons;
package io.evanwong.oss.hipchat.v2.commons;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectReader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.evanwong.hipchat.v2.commons;
package io.evanwong.oss.hipchat.v2.commons;

import org.apache.http.client.HttpClient;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.evanwong.hipchat.v2.rooms;
package io.evanwong.oss.hipchat.v2.rooms;

import io.evanwong.hipchat.v2.commons.GetRequest;
import io.evanwong.oss.hipchat.v2.commons.GetRequest;
import org.apache.http.client.HttpClient;

import java.util.HashMap;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.evanwong.hipchat.v2.rooms;
package io.evanwong.oss.hipchat.v2.rooms;

import io.evanwong.hipchat.v2.commons.ExpandableRequestBuilder;
import io.evanwong.oss.hipchat.v2.commons.ExpandableRequestBuilder;
import org.apache.http.client.HttpClient;

import java.util.concurrent.ExecutorService;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.evanwong.hipchat.v2.rooms;
package io.evanwong.oss.hipchat.v2.rooms;

public enum MessageColor {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.evanwong.hipchat.v2.rooms;
package io.evanwong.oss.hipchat.v2.rooms;

public enum MessageFormat {
HTML("html"), TEXT("text");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.evanwong.hipchat.v2.rooms;
package io.evanwong.oss.hipchat.v2.rooms;

import io.evanwong.hipchat.v2.commons.PagingLinks;
import io.evanwong.oss.hipchat.v2.commons.PagingLinks;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.evanwong.hipchat.v2.rooms;
package io.evanwong.oss.hipchat.v2.rooms;

public class RoomItem {
private Long id;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.evanwong.hipchat.v2.rooms;
package io.evanwong.oss.hipchat.v2.rooms;

public class RoomLinks {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.evanwong.hipchat.v2.rooms;
package io.evanwong.oss.hipchat.v2.rooms;

import io.evanwong.hipchat.v2.commons.NoContent;
import io.evanwong.hipchat.v2.commons.PostRequest;
import io.evanwong.oss.hipchat.v2.commons.NoContent;
import io.evanwong.oss.hipchat.v2.commons.PostRequest;
import org.apache.http.client.HttpClient;

import java.util.HashMap;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.evanwong.hipchat.v2.rooms;
package io.evanwong.oss.hipchat.v2.rooms;

import io.evanwong.hipchat.v2.commons.RequestBuilder;
import io.evanwong.oss.hipchat.v2.commons.RequestBuilder;
import org.apache.http.client.HttpClient;

import java.util.concurrent.ExecutorService;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.evanwong.hipchat.v2
package io.evanwong.oss.hipchat.v2

import io.evanwong.hipchat.v2.rooms.MessageColor
import io.evanwong.hipchat.v2.rooms.MessageFormat
import io.evanwong.oss.hipchat.v2.rooms.MessageColor
import io.evanwong.oss.hipchat.v2.rooms.MessageFormat
import spock.lang.Specification

class HipChatClientSpec extends Specification {
Expand Down

0 comments on commit 6780518

Please sign in to comment.