/** * This class file was automatically generated by jASN1 v1.9.0 (http://www.openmuc.org) */ package org.openmuc.josistack.internal.presentation.asn1; import java.math.BigInteger; import org.openmuc.jasn1.ber.types.BerInteger; public class Result extends BerInteger { private static final long serialVersionUID = 1L; public Result() { } public Result(byte[] code) { super(code); } public Result(BigInteger value) { super(value); } public Result(long value) { super(value); } }