fix field ID signatures

Signed-off-by: Grant Limberg <glimberg@gmail.com>
This commit is contained in:
Grant Limberg 2015-04-23 22:47:56 -07:00
parent 6ff2e6ecfe
commit 1bea940323

View File

@ -669,7 +669,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_status
if(addressField == NULL) if(addressField == NULL)
{ {
addressField = env->GetFieldID(nodeStatusClass, "address", "Lcom/zerotierone/sdk/NodeStatus;"); addressField = env->GetFieldID(nodeStatusClass, "address", "J");
if(addressField == NULL) if(addressField == NULL)
{ {
return NULL; return NULL;
@ -678,7 +678,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_status
if(publicIdentityField == NULL) if(publicIdentityField == NULL)
{ {
publicIdentityField = env->GetFieldID(nodeStatusClass, "publicIdentity", "Lcom/zerotierone/sdk/NodeStatus;"); publicIdentityField = env->GetFieldID(nodeStatusClass, "publicIdentity", "Ljava/lang/String;");
if(publicIdentityField == NULL) if(publicIdentityField == NULL)
{ {
return NULL; return NULL;
@ -687,7 +687,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_status
if(secretIdentityField == NULL) if(secretIdentityField == NULL)
{ {
secretIdentityField = env->GetFieldID(nodeStatusClass, "secretIdentity", "Lcom/zerotierone/sdk/NodeStatus;"); secretIdentityField = env->GetFieldID(nodeStatusClass, "secretIdentity", "Ljava/lang/String;");
if(secretIdentityField == NULL) if(secretIdentityField == NULL)
{ {
return NULL; return NULL;
@ -696,7 +696,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_status
if(onlineField == NULL) if(onlineField == NULL)
{ {
onlineField = env->GetFieldID(nodeStatusClass, "online", "Lcom/zerotierone/sdk/NodeStatus;"); onlineField = env->GetFieldID(nodeStatusClass, "online", "Z");
if(onlineField == NULL) if(onlineField == NULL)
{ {
return NULL; return NULL;
@ -779,7 +779,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(nwidField == NULL) if(nwidField == NULL)
{ {
nwidField = env->GetFieldID(vnetConfigClass, "nwid", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); nwidField = env->GetFieldID(vnetConfigClass, "nwid", "J");
if(nwidField == NULL) if(nwidField == NULL)
{ {
return NULL; return NULL;
@ -788,7 +788,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(macField == NULL) if(macField == NULL)
{ {
macField = env->GetFieldID(vnetConfigClass, "mac", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); macField = env->GetFieldID(vnetConfigClass, "mac", "J");
if(macField == NULL) if(macField == NULL)
{ {
return NULL; return NULL;
@ -797,7 +797,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(nameField == NULL) if(nameField == NULL)
{ {
nameField = env->GetFieldID(vnetConfigClass, "name", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); nameField = env->GetFieldID(vnetConfigClass, "name", "Ljava/lang/String;");
if(nameField == NULL) if(nameField == NULL)
{ {
return NULL; return NULL;
@ -806,7 +806,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(statusField == NULL) if(statusField == NULL)
{ {
statusField = env->GetFieldID(vnetConfigClass, "status", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); statusField = env->GetFieldID(vnetConfigClass, "status", "Lcom/zerotierone/sdk/VirtualNetworStatus;");
if(statusField == NULL) if(statusField == NULL)
{ {
return NULL; return NULL;
@ -815,7 +815,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(typeField == NULL) if(typeField == NULL)
{ {
typeField = env->GetFieldID(vnetConfigClass, "type", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); typeField = env->GetFieldID(vnetConfigClass, "type", "Lcom/zerotierone/sdk/VirtualNetworkType;");
if(typeField == NULL) if(typeField == NULL)
{ {
return NULL; return NULL;
@ -824,7 +824,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(mtuField == NULL) if(mtuField == NULL)
{ {
mtuField = env->GetFieldID(vnetConfigClass, "mtu", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); mtuField = env->GetFieldID(vnetConfigClass, "mtu", "I");
if(mtuField == NULL) if(mtuField == NULL)
{ {
return NULL; return NULL;
@ -833,7 +833,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(dhcpField == NULL) if(dhcpField == NULL)
{ {
dhcpField = env->GetFieldID(vnetConfigClass, "dhcp", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); dhcpField = env->GetFieldID(vnetConfigClass, "dhcp", "Z");
if(dhcpField == NULL) if(dhcpField == NULL)
{ {
return NULL; return NULL;
@ -842,7 +842,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(bridgeField == NULL) if(bridgeField == NULL)
{ {
bridgeField = env->GetFieldID(vnetConfigClass, "bridge", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); bridgeField = env->GetFieldID(vnetConfigClass, "bridge", "Z");
if(bridgeField == NULL) if(bridgeField == NULL)
{ {
return NULL; return NULL;
@ -851,7 +851,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(broadcastEnabledField == NULL) if(broadcastEnabledField == NULL)
{ {
broadcastEnabledField = env->GetFieldID(vnetConfigClass, "broadcastEnabled", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); broadcastEnabledField = env->GetFieldID(vnetConfigClass, "broadcastEnabled", "Z");
if(broadcastEnabledField == NULL) if(broadcastEnabledField == NULL)
{ {
return NULL; return NULL;
@ -860,7 +860,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(portErrorField == NULL) if(portErrorField == NULL)
{ {
portErrorField == env->GetFieldID(vnetConfigClass, "portError", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); portErrorField == env->GetFieldID(vnetConfigClass, "portError", "Z");
if(portErrorField == NULL) if(portErrorField == NULL)
{ {
return NULL; return NULL;
@ -869,7 +869,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(enabledField == NULL) if(enabledField == NULL)
{ {
enabledField = env->GetFieldID(vnetConfigClass, "enabled", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); enabledField = env->GetFieldID(vnetConfigClass, "enabled", "Z");
if(enabledField == NULL) if(enabledField == NULL)
{ {
return NULL; return NULL;
@ -878,7 +878,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(netconfRevisionField == NULL) if(netconfRevisionField == NULL)
{ {
netconfRevisionField = env->GetFieldID(vnetConfigClass, "netconfRevision", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); netconfRevisionField = env->GetFieldID(vnetConfigClass, "netconfRevision", "J");
if(netconfRevisionField == NULL) if(netconfRevisionField == NULL)
{ {
return NULL; return NULL;
@ -887,7 +887,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(multicastSubscriptionsField == NULL) if(multicastSubscriptionsField == NULL)
{ {
multicastSubscriptionsField = env->GetFieldID(vnetConfigClass, "multicastSubscriptions", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); multicastSubscriptionsField = env->GetFieldID(vnetConfigClass, "multicastSubscriptions", "Ljava/util/ArrayList;");
if(multicastSubscriptionsField == NULL) if(multicastSubscriptionsField == NULL)
{ {
return NULL; return NULL;
@ -896,7 +896,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_networkConfig
if(assignedAddressesField == NULL) if(assignedAddressesField == NULL)
{ {
assignedAddressesField = env->GetFieldID(vnetConfigClass, "assignedAddresses", "Lcom/zerotierone/sdk/VirtualNetworkConfig;"); assignedAddressesField = env->GetFieldID(vnetConfigClass, "assignedAddresses", "Ljava/util/ArrayList;");
if(assignedAddressesField == NULL) if(assignedAddressesField == NULL)
{ {
return NULL; return NULL;
@ -989,7 +989,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_version
if(majorField == NULL) if(majorField == NULL)
{ {
majorField = env->GetFieldID(versionClass, "major", "Lcom/zerotierone/sdk/Version;"); majorField = env->GetFieldID(versionClass, "major", "I");
if(majorField = NULL) if(majorField = NULL)
{ {
return NULL; return NULL;
@ -998,7 +998,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_version
if(minorField == NULL) if(minorField == NULL)
{ {
minorField = env->GetFieldID(versionClass, "minor", "Lcom/zerotierone/sdk/Version;"); minorField = env->GetFieldID(versionClass, "minor", "I");
if(minorField == NULL) if(minorField == NULL)
{ {
return NULL; return NULL;
@ -1007,7 +1007,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_version
if(revisionField == NULL) if(revisionField == NULL)
{ {
revisionField = env->GetFieldID(versionClass, "revision", "Lcom/zerotierone/sdk/Version;"); revisionField = env->GetFieldID(versionClass, "revision", "I");
if(revisionField == NULL) if(revisionField == NULL)
{ {
return NULL; return NULL;
@ -1016,7 +1016,7 @@ JNIEXPORT jobject JNICALL Java_com_zerotierone_sdk_Node_version
if(featureFlagsField == NULL) if(featureFlagsField == NULL)
{ {
featureFlagsField = env->GetFieldID(versionClass, "featureFlags", "Lcom/zerotierone/sdk/Version;"); featureFlagsField = env->GetFieldID(versionClass, "featureFlags", "J");
if(featureFlagsField == NULL) if(featureFlagsField == NULL)
{ {
return NULL; return NULL;