OpenEUICC/libs/lpad-sm-dp-plus-connector/src/generated/asn1/com/truphone/rsp/dto/asn1/rspdefinitions/PendingNotification.java
Peter Cai 9ca7ac91be check in the generated ASN.1 beans
This will facilitate inclusion of OpenEUICC in AOSP source tree
2022-07-23 20:55:50 -04:00

147 lines
4 KiB
Java

/*
* This class file was automatically generated by ASN1bean v1.13.0 (http://www.beanit.com)
*/
package com.truphone.rsp.dto.asn1.rspdefinitions;
import java.io.IOException;
import java.io.EOFException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.ByteArrayOutputStream;
import java.util.List;
import java.util.ArrayList;
import java.util.Iterator;
import java.io.UnsupportedEncodingException;
import java.math.BigInteger;
import java.io.Serializable;
import com.beanit.asn1bean.ber.*;
import com.beanit.asn1bean.ber.types.*;
import com.beanit.asn1bean.ber.types.string.*;
import com.truphone.rsp.dto.asn1.pkix1explicit88.Certificate;
import com.truphone.rsp.dto.asn1.pkix1explicit88.CertificateList;
import com.truphone.rsp.dto.asn1.pkix1explicit88.Time;
import com.truphone.rsp.dto.asn1.pkix1implicit88.SubjectKeyIdentifier;
public class PendingNotification implements BerType, Serializable {
private static final long serialVersionUID = 1L;
private byte[] code = null;
private ProfileInstallationResult profileInstallationResult = null;
private OtherSignedNotification otherSignedNotification = null;
public PendingNotification() {
}
public PendingNotification(byte[] code) {
this.code = code;
}
public void setProfileInstallationResult(ProfileInstallationResult profileInstallationResult) {
this.profileInstallationResult = profileInstallationResult;
}
public ProfileInstallationResult getProfileInstallationResult() {
return profileInstallationResult;
}
public void setOtherSignedNotification(OtherSignedNotification otherSignedNotification) {
this.otherSignedNotification = otherSignedNotification;
}
public OtherSignedNotification getOtherSignedNotification() {
return otherSignedNotification;
}
@Override public int encode(OutputStream reverseOS) throws IOException {
if (code != null) {
reverseOS.write(code);
return code.length;
}
int codeLength = 0;
if (otherSignedNotification != null) {
codeLength += otherSignedNotification.encode(reverseOS, true);
return codeLength;
}
if (profileInstallationResult != null) {
codeLength += profileInstallationResult.encode(reverseOS, false);
// write tag: CONTEXT_CLASS, CONSTRUCTED, 55
reverseOS.write(0x37);
reverseOS.write(0xBF);
codeLength += 2;
return codeLength;
}
throw new IOException("Error encoding CHOICE: No element of CHOICE was selected.");
}
@Override public int decode(InputStream is) throws IOException {
return decode(is, null);
}
public int decode(InputStream is, BerTag berTag) throws IOException {
int tlvByteCount = 0;
boolean tagWasPassed = (berTag != null);
if (berTag == null) {
berTag = new BerTag();
tlvByteCount += berTag.decode(is);
}
if (berTag.equals(BerTag.CONTEXT_CLASS, BerTag.CONSTRUCTED, 55)) {
profileInstallationResult = new ProfileInstallationResult();
tlvByteCount += profileInstallationResult.decode(is, false);
return tlvByteCount;
}
if (berTag.equals(OtherSignedNotification.tag)) {
otherSignedNotification = new OtherSignedNotification();
tlvByteCount += otherSignedNotification.decode(is, false);
return tlvByteCount;
}
if (tagWasPassed) {
return 0;
}
throw new IOException("Error decoding CHOICE: Tag " + berTag + " matched to no item.");
}
public void encodeAndSave(int encodingSizeGuess) throws IOException {
ReverseByteArrayOutputStream reverseOS = new ReverseByteArrayOutputStream(encodingSizeGuess);
encode(reverseOS);
code = reverseOS.getArray();
}
@Override public String toString() {
StringBuilder sb = new StringBuilder();
appendAsString(sb, 0);
return sb.toString();
}
public void appendAsString(StringBuilder sb, int indentLevel) {
if (profileInstallationResult != null) {
sb.append("profileInstallationResult: ");
profileInstallationResult.appendAsString(sb, indentLevel + 1);
return;
}
if (otherSignedNotification != null) {
sb.append("otherSignedNotification: ");
otherSignedNotification.appendAsString(sb, indentLevel + 1);
return;
}
sb.append("<none>");
}
}