blob: 496794141280378a97ceb34bfab6e1d335cb9aad [file] [log] [blame]
slowr13fa5b02017-08-08 16:32:31 -07001/**
2 * This class file was automatically generated by jASN1 v1.8.0 (http://www.openmuc.org)
3 */
4
5package org.onosproject.xran.codecs.api;
6
7import java.io.IOException;
8import java.io.EOFException;
9import java.io.InputStream;
10import java.util.List;
11import java.util.ArrayList;
12import java.util.Iterator;
13import java.io.UnsupportedEncodingException;
14import java.math.BigInteger;
15import java.io.Serializable;
16import java.util.Objects;
17
18import org.openmuc.jasn1.ber.*;
19import org.openmuc.jasn1.ber.types.*;
20import org.openmuc.jasn1.ber.types.string.*;
21
22
23public class MMEUES1APID extends BerInteger {
24
25 private static final long serialVersionUID = 1L;
26
27 public MMEUES1APID() {
28 }
29
30 public MMEUES1APID(byte[] code) {
31 super(code);
32 }
33
34 public MMEUES1APID(BigInteger value) {
35 super(value);
36 }
37
38 public MMEUES1APID(long value) {
39 super(value);
40 }
41
42 @Override
43 public int hashCode() {
44 return value.hashCode();
45 }
46
47 @Override
48 public boolean equals(Object obj) {
49 if (obj instanceof MMEUES1APID) {
50 return Objects.equals(value, ((MMEUES1APID) obj).value);
51 }
52 return super.equals(obj);
53 }
54}