Skip to content

Commit

Permalink
Change package to com.datastax.oss.pulsar.transforms
Browse files Browse the repository at this point in the history
  • Loading branch information
cbornet committed Jun 27, 2022
1 parent 16b5c28 commit 8eda3ac
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import lombok.extern.slf4j.Slf4j;
import org.apache.pulsar.client.api.Schema;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import java.util.List;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import java.util.List;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

public interface TransformStep {
void process(TransformContext transformContext) throws Exception;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

public class UnwrapKeyValueStep implements TransformStep {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@

name: transforms
description: Transformation function
functionClass: com.datastax.pulsar.functions.transforms.TransformFunction
functionClass: com.datastax.oss.pulsar.functions.transforms.TransformFunction
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertSame;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotSame;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotSame;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertThrows;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import static org.junit.Assert.assertSame;
import static org.testng.Assert.assertEquals;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.datastax.pulsar.functions.transforms;
package com.datastax.oss.pulsar.functions.transforms;

import java.io.IOException;
import java.nio.ByteBuffer;
Expand Down

0 comments on commit 8eda3ac

Please sign in to comment.