Class NEAppPushManager

  • All Implemented Interfaces:
    NSObject

    public class NEAppPushManager
    extends NSObject
    [@interface] NEAppPushManager The NEAppPushManager class declares a programmatic interface to configure NEAppPushProvider. NEAppPushManager declares methods and properties for configuring and managing life cycle of app push provider. Instances of this class are thread safe.
    • Constructor Detail

      • NEAppPushManager

        protected NEAppPushManager​(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()
      • delegate

        public NEAppPushDelegate delegate()
        [@property] delegate An instance of type NEAppPushDelegate that is required to receive incoming call informarion from the provider.
      • 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)
      • isActive

        public boolean isActive()
        [@property] active If set to YES, it indicates the associated configuration is in use. Use KVO to watch for changes.
      • isEnabled

        public boolean isEnabled()
        [@property] enabled Toggles the enabled status of the configuration. This property will be set to NO when the same app saves another configuration that overlaps with this configuration.
      • isSubclassOfClass

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

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

        public static void loadAllFromPreferencesWithCompletionHandler​(NEAppPushManager.Block_loadAllFromPreferencesWithCompletionHandler completionHandler)
        loadAllFromPreferencesWithCompletionHandler: This class method asynchronously reads all of the saved configurations and returns them as an array of NEAppPushManager objects.
        Parameters:
        completionHandler - A block that takes an array of NEAppPushManager objects. The array passed to the block may be empty if no configurations were successfully read from the disk. The NSError object passed to this block will be nil if the load operation succeeded, non-nil otherwise.
      • loadFromPreferencesWithCompletionHandler

        public void loadFromPreferencesWithCompletionHandler​(NEAppPushManager.Block_loadFromPreferencesWithCompletionHandler completionHandler)
        loadFromPreferencesWithCompletionHandler: This method loads the saved configuration from the persistent store.
        Parameters:
        completionHandler - A block that will be called when the load operation is completed. The NSError object passed to this block will be nil if the load operation succeeded, non-nil otherwise.
      • localizedDescription

        public java.lang.String localizedDescription()
        [@property] localizedDescription A string containing a description of the app push manager.
      • matchSSIDs

        public NSArray<java.lang.String> matchSSIDs()
        [@property] matchSSIDs An array of Wi-Fi SSID strings. If the SSID string of current Wi-Fi network matches with one of these strings then the NEAppPushProvider is started. It is manadatory to provide at least one SSID to start the provider. The upper limit of number of SSIDs is 10.
      • new_objc

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

        public java.lang.String providerBundleIdentifier()
        [@property] providerBundleIdentifier A string containing the bundle identifier of the NEAppPushProvider.
      • providerConfiguration

        public NSDictionary<java.lang.String,​?> providerConfiguration()
        [@property] providerConfiguration A dictionary containing vendor-specific key-value pairs, where the data type of values must be one of the data types supported by property list. Values of user defined data type are not supported. This dictionary is passed as-is to NEAppPushProvider when is it is started or notified for other specified reasons.
      • removeFromPreferencesWithCompletionHandler

        public void removeFromPreferencesWithCompletionHandler​(NEAppPushManager.Block_removeFromPreferencesWithCompletionHandler completionHandler)
        removeFromPreferencesWithCompletionHandler: This method removes the configuration from the persistent store.
        Parameters:
        completionHandler - A block that will be called when the remove operation is completed. The NSError object passed to this block will be nil if the remove operation succeeded, non-nil otherwise.
      • resolveClassMethod

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

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

        public void saveToPreferencesWithCompletionHandler​(NEAppPushManager.Block_saveToPreferencesWithCompletionHandler completionHandler)
        saveToPreferencesWithCompletionHandler: This method saves the configuration in the persistent store.
        Parameters:
        completionHandler - A block that will be called when the save operation is completed. The NSError object passed to this block will be nil if the save operation succeeded, non-nil otherwise.
      • setDelegate_unsafe

        public void setDelegate_unsafe​(NEAppPushDelegate value)
        [@property] delegate An instance of type NEAppPushDelegate that is required to receive incoming call informarion from the provider.
      • setDelegate

        public void setDelegate​(NEAppPushDelegate value)
        [@property] delegate An instance of type NEAppPushDelegate that is required to receive incoming call informarion from the provider.
      • setEnabled

        public void setEnabled​(boolean value)
        [@property] enabled Toggles the enabled status of the configuration. This property will be set to NO when the same app saves another configuration that overlaps with this configuration.
      • setLocalizedDescription

        public void setLocalizedDescription​(java.lang.String value)
        [@property] localizedDescription A string containing a description of the app push manager.
      • setMatchSSIDs

        public void setMatchSSIDs​(NSArray<java.lang.String> value)
        [@property] matchSSIDs An array of Wi-Fi SSID strings. If the SSID string of current Wi-Fi network matches with one of these strings then the NEAppPushProvider is started. It is manadatory to provide at least one SSID to start the provider. The upper limit of number of SSIDs is 10.
      • setProviderBundleIdentifier

        public void setProviderBundleIdentifier​(java.lang.String value)
        [@property] providerBundleIdentifier A string containing the bundle identifier of the NEAppPushProvider.
      • setProviderConfiguration

        public void setProviderConfiguration​(NSDictionary<java.lang.String,​?> value)
        [@property] providerConfiguration A dictionary containing vendor-specific key-value pairs, where the data type of values must be one of the data types supported by property list. Values of user defined data type are not supported. This dictionary is passed as-is to NEAppPushProvider when is it is started or notified for other specified reasons.
      • setVersion_static

        public static void setVersion_static​(long aVersion)
      • superclass_static

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

        public static long version_static()