OpenEUICC/libs/lpad-sm-dp-plus-connector/src/generated/asn1/com/truphone/rsp/dto/asn1/pkix1explicit88/Time.java

137 lines
3.0 KiB
Java

/*
* This class file was automatically generated by ASN1bean v1.13.0 (http://www.beanit.com)
*/
package com.truphone.rsp.dto.asn1.pkix1explicit88;
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.*;
public class Time implements BerType, Serializable {
private static final long serialVersionUID = 1L;
private byte[] code = null;
private BerUtcTime utcTime = null;
private BerGeneralizedTime generalTime = null;
public Time() {
}
public Time(byte[] code) {
this.code = code;
}
public void setUtcTime(BerUtcTime utcTime) {
this.utcTime = utcTime;
}
public BerUtcTime getUtcTime() {
return utcTime;
}
public void setGeneralTime(BerGeneralizedTime generalTime) {
this.generalTime = generalTime;
}
public BerGeneralizedTime getGeneralTime() {
return generalTime;
}
@Override public int encode(OutputStream reverseOS) throws IOException {
if (code != null) {
reverseOS.write(code);
return code.length;
}
int codeLength = 0;
if (generalTime != null) {
codeLength += generalTime.encode(reverseOS, true);
return codeLength;
}
if (utcTime != null) {
codeLength += utcTime.encode(reverseOS, true);
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(BerUtcTime.tag)) {
utcTime = new BerUtcTime();
tlvByteCount += utcTime.decode(is, false);
return tlvByteCount;
}
if (berTag.equals(BerGeneralizedTime.tag)) {
generalTime = new BerGeneralizedTime();
tlvByteCount += generalTime.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 (utcTime != null) {
sb.append("utcTime: ").append(utcTime);
return;
}
if (generalTime != null) {
sb.append("generalTime: ").append(generalTime);
return;
}
sb.append("<none>");
}
}