11 lines
330 B
Haxe
11 lines
330 B
Haxe
package flash.security;
|
|
|
|
@:native("flash.security.RevocationCheckSettings")
|
|
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract RevocationCheckSettings(String)
|
|
{
|
|
var ALWAYS_REQUIRED = "alwaysRequired";
|
|
var BEST_EFFORT = "bestEffort";
|
|
var NEVER = "never";
|
|
var REQUIRED_IF_AVAILABLE = "requiredIfAvailable";
|
|
}
|