Skip to content

Commit

Permalink
Rename packages in preparation for move to Apache
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce Robbins committed Nov 21, 2011
1 parent 2f93667 commit 01d2dd8
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
* language governing permissions and limitations under the
* License. See accompanying LICENSE file.
*/
package io.s4.client.example;
package org.apache.s4.client.example;

import io.s4.client.Driver;
import io.s4.client.Message;
import org.apache.s4.client.Driver;
import org.apache.s4.client.Message;

import java.io.BufferedReader;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
* language governing permissions and limitations under the
* License. See accompanying LICENSE file.
*/
package io.s4.client.example;
package org.apache.s4.client.example;

import io.s4.client.Driver;
import io.s4.client.Message;
import io.s4.client.ReadMode;
import io.s4.client.WriteMode;
import org.apache.s4.client.Driver;
import org.apache.s4.client.Message;
import org.apache.s4.client.ReadMode;
import org.apache.s4.client.WriteMode;

import java.io.BufferedReader;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
* language governing permissions and limitations under the
* License. See accompanying LICENSE file.
*/
package io.s4.client.example;
package org.apache.s4.client.example;

import io.s4.client.Driver;
import io.s4.client.Message;
import io.s4.client.ReadMode;
import org.apache.s4.client.Driver;
import org.apache.s4.client.Message;
import org.apache.s4.client.ReadMode;

import java.io.BufferedReader;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* language governing permissions and limitations under the
* License. See accompanying LICENSE file.
*/
package io.s4.client;
package org.apache.s4.client;

import io.s4.client.util.ByteArrayIOChannel;
import org.apache.s4.client.util.ByteArrayIOChannel;

import java.io.IOException;
import java.net.Socket;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* language governing permissions and limitations under the
* License. See accompanying LICENSE file.
*/
package io.s4.client;
package org.apache.s4.client;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.s4.client;
package org.apache.s4.client;

import org.json.JSONException;
import org.json.JSONObject;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* language governing permissions and limitations under the
* License. See accompanying LICENSE file.
*/
package io.s4.client;
package org.apache.s4.client;

public enum ReadMode {
None, Private, Select, All;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* language governing permissions and limitations under the
* License. See accompanying LICENSE file.
*/
package io.s4.client;
package org.apache.s4.client;

public enum WriteMode {
Enabled, Disabled;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* language governing permissions and limitations under the
* License. See accompanying LICENSE file.
*/
package io.s4.client.util;
package org.apache.s4.client.util;

import io.s4.client.IOChannel;
import org.apache.s4.client.IOChannel;

import java.io.IOException;
import java.io.InputStream;
Expand Down

0 comments on commit 01d2dd8

Please sign in to comment.