Module java.base

Class ReflectPermission

    • Constructor Detail

      • ReflectPermission

        public ReflectPermission​(String name)
        Constructs a ReflectPermission with the specified name.
        Parameters:
        name - the name of the ReflectPermission
        Throws:
        NullPointerException - if name is null.
        IllegalArgumentException - if name is empty.
      • ReflectPermission

        public ReflectPermission​(String name,
                                 String actions)
        Constructs a ReflectPermission with the specified name and actions. The actions should be null; they are ignored.
        Parameters:
        name - the name of the ReflectPermission
        actions - should be null
        Throws:
        NullPointerException - if name is null.
        IllegalArgumentException - if name is empty.