Class NEFilterProviderConfiguration

  • All Implemented Interfaces:
    NSCoding, NSCopying, NSSecureCoding, NSObject

    public class NEFilterProviderConfiguration
    extends NSObject
    implements NSSecureCoding, NSCopying
    [@interface] NEFilterProviderConfiguration The NEFilterProviderConfiguration class declares the programmatic interface of an object that configures a plugin-based content filter.
    • Constructor Detail

      • NEFilterProviderConfiguration

        protected NEFilterProviderConfiguration​(org.moe.natj.general.Pointer peer)
    • Method Detail

      • accessInstanceVariablesDirectly

        public static boolean accessInstanceVariablesDirectly()
      • allocWithZone

        public static java.lang.Object allocWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
      • automaticallyNotifiesObserversForKey

        public static boolean automaticallyNotifiesObserversForKey​(java.lang.String key)
      • cancelPreviousPerformRequestsWithTarget

        public static void cancelPreviousPerformRequestsWithTarget​(java.lang.Object aTarget)
      • cancelPreviousPerformRequestsWithTargetSelectorObject

        public static void cancelPreviousPerformRequestsWithTargetSelectorObject​(java.lang.Object aTarget,
                                                                                 org.moe.natj.objc.SEL aSelector,
                                                                                 java.lang.Object anArgument)
      • classFallbacksForKeyedArchiver

        public static NSArray<java.lang.String> classFallbacksForKeyedArchiver()
      • classForKeyedUnarchiver

        public static org.moe.natj.objc.Class classForKeyedUnarchiver()
      • debugDescription_static

        public static java.lang.String debugDescription_static()
      • description_static

        public static java.lang.String description_static()
      • hash_static

        public static long hash_static()
      • instanceMethodSignatureForSelector

        public static NSMethodSignature instanceMethodSignatureForSelector​(org.moe.natj.objc.SEL aSelector)
      • instancesRespondToSelector

        public static boolean instancesRespondToSelector​(org.moe.natj.objc.SEL aSelector)
      • isSubclassOfClass

        public static boolean isSubclassOfClass​(org.moe.natj.objc.Class aClass)
      • keyPathsForValuesAffectingValueForKey

        public static NSSet<java.lang.String> keyPathsForValuesAffectingValueForKey​(java.lang.String key)
      • new_objc

        public static java.lang.Object new_objc()
      • resolveClassMethod

        public static boolean resolveClassMethod​(org.moe.natj.objc.SEL sel)
      • resolveInstanceMethod

        public static boolean resolveInstanceMethod​(org.moe.natj.objc.SEL sel)
      • setVersion_static

        public static void setVersion_static​(long aVersion)
      • superclass_static

        public static org.moe.natj.objc.Class superclass_static()
      • supportsSecureCoding

        public static boolean supportsSecureCoding()
      • version_static

        public static long version_static()
      • copyWithZone

        public java.lang.Object copyWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
        Specified by:
        copyWithZone in interface NSCopying
      • filterBrowsers

        public boolean filterBrowsers()
        [@property] filterBrowsers If YES, the filter plugin will be allowed to filter browser traffic. If NO, the filter plugin will not see any browser flows. Defaults to NO. At least one of filterBrowsers and filterSockets should be set to YES to make the filter take effect.
      • filterSockets

        public boolean filterSockets()
        [@property] filterSockets If YES, the filter plugin will be allowed to filter socket traffic. If NO, the filter plugin will not see any socket flows. Defaults to NO. At least one of filterBrowsers and filterSockets should be set to YES to make the filter take effect.
      • identityReference

        public NSData identityReference()
        [@property] identityReference The optional certificate identity keychain reference associated with the filter.
      • organization

        public java.lang.String organization()
        [@property] organization The optional organization associated with the filter.
      • passwordReference

        public NSData passwordReference()
        [@property] passwordReference The optional password keychain reference associated with the filter.
      • serverAddress

        public java.lang.String serverAddress()
        [@property] serverAddress The optional address of the server used to support the filter.
      • setFilterBrowsers

        public void setFilterBrowsers​(boolean value)
        [@property] filterBrowsers If YES, the filter plugin will be allowed to filter browser traffic. If NO, the filter plugin will not see any browser flows. Defaults to NO. At least one of filterBrowsers and filterSockets should be set to YES to make the filter take effect.
      • setFilterSockets

        public void setFilterSockets​(boolean value)
        [@property] filterSockets If YES, the filter plugin will be allowed to filter socket traffic. If NO, the filter plugin will not see any socket flows. Defaults to NO. At least one of filterBrowsers and filterSockets should be set to YES to make the filter take effect.
      • setIdentityReference

        public void setIdentityReference​(NSData value)
        [@property] identityReference The optional certificate identity keychain reference associated with the filter.
      • setOrganization

        public void setOrganization​(java.lang.String value)
        [@property] organization The optional organization associated with the filter.
      • setPasswordReference

        public void setPasswordReference​(NSData value)
        [@property] passwordReference The optional password keychain reference associated with the filter.
      • setServerAddress

        public void setServerAddress​(java.lang.String value)
        [@property] serverAddress The optional address of the server used to support the filter.
      • setUsername

        public void setUsername​(java.lang.String value)
        [@property] username The optional username associated with the filter.
      • setVendorConfiguration

        public void setVendorConfiguration​(NSDictionary<java.lang.String,​?> value)
        [@property] vendorConfiguration An optional dictionary of plugin-specific keys to be passed to the plugin.
      • _supportsSecureCoding

        public boolean _supportsSecureCoding()
        Description copied from interface: NSSecureCoding
        This property must return YES on all classes that allow secure coding. Subclasses of classes that adopt NSSecureCoding and override initWithCoder: must also override this method and return YES. The Secure Coding Guide should be consulted when writing methods that decode data.
        Specified by:
        _supportsSecureCoding in interface NSSecureCoding
      • username

        public java.lang.String username()
        [@property] username The optional username associated with the filter.
      • vendorConfiguration

        public NSDictionary<java.lang.String,​?> vendorConfiguration()
        [@property] vendorConfiguration An optional dictionary of plugin-specific keys to be passed to the plugin.