java.security.AllPermission Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt Show documentation
Show all versions of jtransc-rt Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
package java.security;
public final class AllPermission extends Permission {
public AllPermission(String name, String actions) {
super("");
}
public AllPermission() {
super("");
}
@Override
public String getActions() {
return null;
}
@Override
public boolean implies(Permission permission) {
return true;
}
}