Class IMEICondition


  • public class IMEICondition
    extends java.lang.Object
    Class representing an IMEI condition. Instances of this class contain a string value that is matched against the IMEI of the device.
    Version:
    $Revision: 6439 $
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static org.osgi.service.condpermadmin.Condition getCondition​(org.osgi.framework.Bundle bundle, org.osgi.service.condpermadmin.ConditionInfo conditionInfo)
      Creates an IMEI condition object.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getCondition

        public static org.osgi.service.condpermadmin.Condition getCondition​(org.osgi.framework.Bundle bundle,
                                                                            org.osgi.service.condpermadmin.ConditionInfo conditionInfo)
        Creates an IMEI condition object.
        Parameters:
        bundle - This parameter is ignored, as the IMEI number is a property of the mobile device and thus is the same for all bundles.
        conditionInfo - Contains the IMEI value against which to match the device's IMEI. Its ConditionInfo.getArgs() method should return a String array with one value: the IMEI string. The IMEI is 15 digits without hyphens. Limited pattern matching is allowed: the string is 0 to 14 digits, followed by an asterisk ( *).
        Returns:
        A Condition object that indicates whether the specified IMEI number matches that of the device. If the number ends with an asterisk ( *), then the beginning of the IMEI is compared to the pattern.
        Throws:
        java.lang.IllegalArgumentException - If the IMEI is not a string of 15 digits, or 0 to 14 digits with an * at the end.