exports.getInstanceId = function(success, error) { if (typeof success === 'function') { success(); } }; exports.getToken = function(success, error) { if (typeof success === 'function') { success(); } }; exports.onNotificationOpen = function(success, error) { }; exports.onTokenRefresh = function(success, error) { }; exports.grantPermission = function(success, error) { if (typeof success === 'function') { success(); } }; exports.setBadgeNumber = function(number, success, error) { if (typeof success === 'function') { success(); } }; exports.getBadgeNumber = function(success, error) { if (typeof success === 'function') { success(); } }; exports.subscribe = function(topic, success, error) { if (typeof success === 'function') { success(); } }; exports.unsubscribe = function(topic, success, error) { if (typeof success === 'function') { success(); } }; exports.logEvent = function(name, params, success, error) { if (typeof success === 'function') { success(); } }; exports.logError = function(message, success, error) { if (typeof success === 'function') { success(); } }; exports.setScreenName = function(name, success, error) { if (typeof success === 'function') { success(); } }; exports.setUserId = function(id, success, error) { if (typeof success === 'function') { success(); } }; exports.setUserProperty = function(name, value, success, error) { if (typeof success === 'function') { success(); } }; exports.activateFetched = function (success, error) { if (typeof success === 'function') { success(); } }; exports.fetch = function (cacheExpirationSeconds, success, error) { if (typeof success === 'function') { success(); } }; exports.getByteArray = function (key, namespace, success, error) { if (typeof success === 'function') { success(); } }; exports.getValue = function (key, namespace, success, error) { if (typeof success === 'function') { success(); } }; exports.getInfo = function (success, error) { if (typeof success === 'function') { success(); } }; exports.setConfigSettings = function (settings, success, error) { if (typeof success === 'function') { success(); } }; exports.setDefaults = function (defaults, namespace, success, error) { if (typeof success === 'function') { success(); } };