[FLINK-19620] Rename RemoteModuleE2E to ExactlyOnceWithRemoteFnE2E

This renaming is to reflect the fact that this E2E now also tests
exactly-once semantics. The renaming is also applied to the owning
module.

This closes #163.
diff --git a/statefun-e2e-tests/pom.xml b/statefun-e2e-tests/pom.xml
index c27d0ee..b754f0e 100644
--- a/statefun-e2e-tests/pom.xml
+++ b/statefun-e2e-tests/pom.xml
@@ -31,7 +31,7 @@
     <modules>
         <module>statefun-e2e-tests-common</module>
         <module>statefun-sanity-e2e</module>
-        <module>statefun-remote-module-e2e</module>
+        <module>statefun-exactly-once-remote-e2e</module>
     </modules>
 
     <build>
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/pom.xml b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/pom.xml
similarity index 98%
rename from statefun-e2e-tests/statefun-remote-module-e2e/pom.xml
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/pom.xml
index 45c5956..f8b4dcf 100644
--- a/statefun-e2e-tests/statefun-remote-module-e2e/pom.xml
+++ b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/pom.xml
@@ -25,7 +25,7 @@
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
-    <artifactId>statefun-remote-module-e2e</artifactId>
+    <artifactId>statefun-exactly-once-remote-e2e</artifactId>
 
     <properties>
         <testcontainers.version>1.12.5</testcontainers.version>
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/src/main/protobuf/remote-module-verification.proto b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/protobuf/remote-module-verification.proto
similarity index 100%
rename from statefun-e2e-tests/statefun-remote-module-e2e/src/main/protobuf/remote-module-verification.proto
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/protobuf/remote-module-verification.proto
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/src/main/python/functions.py b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/python/functions.py
similarity index 100%
rename from statefun-e2e-tests/statefun-remote-module-e2e/src/main/python/functions.py
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/python/functions.py
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/src/main/python/remote_module_verification_pb2.py b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/python/remote_module_verification_pb2.py
similarity index 100%
rename from statefun-e2e-tests/statefun-remote-module-e2e/src/main/python/remote_module_verification_pb2.py
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/python/remote_module_verification_pb2.py
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/RemoteModuleE2E.java b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java
similarity index 97%
rename from statefun-e2e-tests/statefun-remote-module-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/RemoteModuleE2E.java
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java
index 6976cb5..3e343cf 100644
--- a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/RemoteModuleE2E.java
+++ b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java
@@ -66,9 +66,9 @@
  * that on the consumer side, the invocation counts increase sequentially for each key as if the
  * failure did not occur.
  */
-public class RemoteModuleE2E {
+public class ExactlyOnceWithRemoteFnE2E {
 
-  private static final Logger LOG = LoggerFactory.getLogger(RemoteModuleE2E.class);
+  private static final Logger LOG = LoggerFactory.getLogger(ExactlyOnceWithRemoteFnE2E.class);
 
   private static final String CONFLUENT_PLATFORM_VERSION = "5.0.3";
 
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile
similarity index 100%
rename from statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile.remote-function b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile.remote-function
similarity index 100%
rename from statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile.remote-function
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile.remote-function
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/log4j.properties b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/log4j.properties
similarity index 100%
rename from statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/log4j.properties
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/log4j.properties
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/remote-module/module.yaml b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/remote-module/module.yaml
similarity index 100%
rename from statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/remote-module/module.yaml
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/remote-module/module.yaml
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/requirements.txt b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/requirements.txt
similarity index 100%
rename from statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/requirements.txt
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/requirements.txt