1212// See the License for the specific language governing permissions and
1313// limitations under the License.
1414
15- #include " org_ros2_rcljava_events_publisher_statuses_OfferedQosIncompatible .h"
15+ #include " org_ros2_rcljava_publisher_statuses_OfferedQosIncompatible .h"
1616
1717#include < jni.h>
1818#include < stdlib.h>
2525using rcljava_common::exceptions::rcljava_throw_exception;
2626
2727JNIEXPORT jlong JNICALL
28- Java_org_ros2_rcljava_events_publisher_1statuses_OfferedQosIncompatible_nAllocateRCLStatusEvent (
28+ Java_org_ros2_rcljava_publisher_statuses_OfferedQosIncompatible_nAllocateRCLStatusEvent (
2929 JNIEnv * env, jclass)
3030{
3131 void * p = malloc (sizeof (rmw_offered_qos_incompatible_event_status_t ));
@@ -37,14 +37,14 @@ Java_org_ros2_rcljava_events_publisher_1statuses_OfferedQosIncompatible_nAllocat
3737}
3838
3939JNIEXPORT void JNICALL
40- Java_org_ros2_rcljava_events_publisher_1statuses_OfferedQosIncompatible_nDeallocateRCLStatusEvent (
40+ Java_org_ros2_rcljava_publisher_statuses_OfferedQosIncompatible_nDeallocateRCLStatusEvent (
4141 JNIEnv *, jclass, jlong handle)
4242{
4343 free (reinterpret_cast <void *>(handle));
4444}
4545
4646JNIEXPORT void JNICALL
47- Java_org_ros2_rcljava_events_publisher_1statuses_OfferedQosIncompatible_nFromRCLEvent (
47+ Java_org_ros2_rcljava_publisher_statuses_OfferedQosIncompatible_nFromRCLEvent (
4848 JNIEnv * env, jobject self, jlong handle)
4949{
5050 auto * p = reinterpret_cast <rmw_offered_qos_incompatible_event_status_t *>(handle);
@@ -55,7 +55,7 @@ Java_org_ros2_rcljava_events_publisher_1statuses_OfferedQosIncompatible_nFromRCL
5555 // TODO(ivanpauno): class and field lookup could be done at startup time
5656 jclass clazz = env->GetObjectClass (self);
5757 jclass qos_kind_clazz = env->FindClass (
58- " org/ros2/rcljava/events/publisher_statuses /OfferedQosIncompatible$PolicyKind" );
58+ " org/ros2/rcljava/publisher/statuses /OfferedQosIncompatible$PolicyKind" );
5959 if (env->ExceptionCheck ()) {
6060 return ;
6161 }
@@ -68,7 +68,7 @@ Java_org_ros2_rcljava_events_publisher_1statuses_OfferedQosIncompatible_nFromRCL
6868 return ;
6969 }
7070 const char * enum_class_path =
71- " Lorg/ros2/rcljava/events/publisher_statuses /OfferedQosIncompatible$PolicyKind;" ;
71+ " Lorg/ros2/rcljava/publisher/statuses /OfferedQosIncompatible$PolicyKind;" ;
7272 jfieldID policy_kind_fid = env->GetFieldID (clazz, " lastPolicyKind" , enum_class_path);
7373 if (env->ExceptionCheck ()) {
7474 return ;
@@ -113,7 +113,7 @@ Java_org_ros2_rcljava_events_publisher_1statuses_OfferedQosIncompatible_nFromRCL
113113}
114114
115115JNIEXPORT jint JNICALL
116- Java_org_ros2_rcljava_events_publisher_1statuses_OfferedQosIncompatible_nGetPublisherEventType (
116+ Java_org_ros2_rcljava_publisher_statuses_OfferedQosIncompatible_nGetPublisherEventType (
117117 JNIEnv *, jclass)
118118{
119119 return RCL_PUBLISHER_OFFERED_INCOMPATIBLE_QOS;
0 commit comments