OpenEUICC/libs/lpad-sm-dp-plus-connector/src/main/java/com/truphone/lpa/apdu/NotificationType.java
Peter Cai 9ca4ce2798 import LPA library implementation from TruPhone
Converted to gradle build and updated a bunch of dependencies.
2022-04-29 18:05:10 -04:00

18 lines
289 B
Java

package com.truphone.lpa.apdu;
public enum NotificationType {
ALL(""), INSTALLED("80"), ENABLED("40"), DISABLED("20"), DELETED("10");
private final String text;
NotificationType(final String text) {
this.text = text;
}
@Override
public String toString() {
return text;
}
}