generate javadocs for the Java SDK

This commit is contained in:
Grant Limberg 2015-04-25 17:29:07 -07:00
parent 0d4283a3fa
commit 56f8160af8
23 changed files with 624 additions and 19 deletions

View file

@ -27,8 +27,23 @@
package com.zerotierone.sdk;
public enum VirtualNetworkConfigOperation {
/**
* Network is coming up (either for the first time or after service restart)
*/
VIRTUAL_NETWORK_CONFIG_OPERATION_UP,
/**
* Network configuration has been updated
*/
VIRTUAL_NETWORK_CONFIG_OPERATION_CONFIG_UPDATE,
/**
* Network is going down (not permanently)
*/
VIRTUAL_NETWORK_CONFIG_OPERATION_DOWN,
/**
* Network is going down permanently (leave/delete)
*/
VIRTUAL_NETWORK_CONFIG_OPERATION_DESTROY
}