updated dependency to to newest jasn1 version

pull/11/head
Stefan Feuerhahn 7 years ago
parent 2e268028e9
commit 0d3a5e2971

@ -23,6 +23,7 @@ public class Myexternal implements BerType, Serializable {
private BerObjectIdentifier directReference = null;
private BerInteger indirectReference = null;
private Encoding encoding = null;
public Myexternal() {}
public Myexternal(byte[] code) {

@ -23,6 +23,7 @@ public class Myexternal2 implements BerType, Serializable {
private BerObjectIdentifier directReference = null;
private BerInteger indirectReference = null;
private Encoding encoding = null;
public Myexternal2() {}
public Myexternal2(byte[] code) {

@ -17,6 +17,7 @@ public class CPAPPDU implements BerType, Serializable {
public byte[] code = null;
private ModeSelector modeSelector = null;
private NormalModeParameters normalModeParameters = null;
public CPAPPDU() {}
public CPAPPDU(byte[] code) {

@ -17,6 +17,7 @@ public class CPType implements BerType, Serializable {
public byte[] code = null;
private ModeSelector modeSelector = null;
private NormalModeParameters normalModeParameters = null;
public CPType() {}
public CPType(byte[] code) {

@ -19,6 +19,7 @@ public class ContextList implements BerType, Serializable {
private static final long serialVersionUID = 1L;
public byte[] code = null;
private List<SEQUENCE> seqOf = null;
public ContextList() {
seqOf = new ArrayList<SEQUENCE>();
}
@ -145,6 +146,7 @@ public class ContextList implements BerType, Serializable {
private PresentationContextIdentifier presentationContextIdentifier = null;
private AbstractSyntaxName abstractSyntaxName = null;
private TransferSyntaxNameList transferSyntaxNameList = null;
public SEQUENCE() {}
public SEQUENCE(byte[] code) {

@ -21,6 +21,7 @@ public class PDVList implements BerType, Serializable {
private TransferSyntaxName transferSyntaxName = null;
private PresentationContextIdentifier presentationContextIdentifier = null;
private PresentationDataValues presentationDataValues = null;
public PDVList() {}
public PDVList(byte[] code) {

@ -20,6 +20,7 @@ public class ResultList implements BerType, Serializable {
private static final long serialVersionUID = 1L;
public byte[] code = null;
private List<SEQUENCE> seqOf = null;
public ResultList() {
seqOf = new ArrayList<SEQUENCE>();
}

@ -19,6 +19,7 @@ public class AlternateAccess implements BerType, Serializable {
private static final long serialVersionUID = 1L;
public byte[] code = null;
private List<CHOICE> seqOf = null;
public AlternateAccess() {
seqOf = new ArrayList<CHOICE>();
}

@ -20,6 +20,7 @@ public class AlternateAccessSelection implements BerType, Serializable {
private SelectAccess selectAccess = null;
public AlternateAccessSelection() {}
public AlternateAccessSelection(byte[] code) {
this.code = code;
}
@ -137,6 +138,7 @@ public class AlternateAccessSelection implements BerType, Serializable {
public byte[] code = null;
private AccessSelection accessSelection = null;
private AlternateAccess alternateAccess = null;
public SelectAlternateAccess() {}
public SelectAlternateAccess(byte[] code) {
@ -280,7 +282,9 @@ public class AlternateAccessSelection implements BerType, Serializable {
private Unsigned32 index = null;
private IndexRange indexRange = null;
private BerNull allElements = null;
public AccessSelection() {}
public AccessSelection(byte[] code) {
this.code = code;
}
@ -705,7 +709,9 @@ public class AlternateAccessSelection implements BerType, Serializable {
private Unsigned32 index = null;
private IndexRange indexRange = null;
private BerNull allElements = null;
public SelectAccess() {}
public SelectAccess(byte[] code) {
this.code = code;
}

@ -35,7 +35,9 @@ public class Data implements BerType, Serializable {
private TimeOfDay binaryTime = null;
private MMSString mMSString = null;
private UtcTime utcTime = null;
public Data() {}
public Data(byte[] code) {
this.code = code;
}

@ -22,7 +22,9 @@ public class DeleteNamedVariableListRequest implements BerType, Serializable {
private BerInteger scopeOfDelete = null;
private ListOfVariableListName listOfVariableListName = null;
private DomainName domainName = null;
public DeleteNamedVariableListRequest() {}
public DeleteNamedVariableListRequest(byte[] code) {
this.code = code;
}

@ -21,6 +21,7 @@ public class FileDirectoryResponse implements BerType, Serializable {
public byte[] code = null;
private ListOfDirectoryEntry listOfDirectoryEntry = null;
private BerBoolean moreFollows = null;
public FileDirectoryResponse() {}
public FileDirectoryResponse(byte[] code) {

@ -19,6 +19,7 @@ public class GetNameListRequest implements BerType, Serializable {
private ObjectClass objectClass = null;
private ObjectScope objectScope = null;
private Identifier continueAfter = null;
public GetNameListRequest() {}
public GetNameListRequest(byte[] code) {

@ -21,6 +21,7 @@ public class GetNameListResponse implements BerType, Serializable {
public byte[] code = null;
private ListOfIdentifier listOfIdentifier = null;
private BerBoolean moreFollows = null;
public GetNameListResponse() {}
public GetNameListResponse(byte[] code) {

@ -20,6 +20,7 @@ public class InformationReport implements BerType, Serializable {
public byte[] code = null;
private VariableAccessSpecification variableAccessSpecification = null;
private ListOfAccessResult listOfAccessResult = null;
public InformationReport() {}
public InformationReport(byte[] code) {

@ -20,6 +20,7 @@ public class InitiateRequestPDU implements BerType, Serializable {
private Integer16 proposedMaxServOutstandingCalled = null;
private Integer8 proposedDataStructureNestingLevel = null;
private InitRequestDetail initRequestDetail = null;
public InitiateRequestPDU() {}
public InitiateRequestPDU(byte[] code) {

@ -20,6 +20,7 @@ public class InitiateResponsePDU implements BerType, Serializable {
private Integer16 negotiatedMaxServOutstandingCalled = null;
private Integer8 negotiatedDataStructureNestingLevel = null;
private InitResponseDetail initResponseDetail = null;
public InitiateResponsePDU() {}
public InitiateResponsePDU(byte[] code) {

@ -18,6 +18,7 @@ public class ObjectName implements BerType, Serializable {
private Identifier vmdSpecific = null;
private DomainSpecific domainSpecific = null;
private Identifier aaSpecific = null;
public ObjectName() {}
public ObjectName(byte[] code) {

@ -20,6 +20,7 @@ public class ReadResponse implements BerType, Serializable {
public byte[] code = null;
private VariableAccessSpecification variableAccessSpecification = null;
private ListOfAccessResult listOfAccessResult = null;
public ReadResponse() {}
public ReadResponse(byte[] code) {

@ -18,6 +18,7 @@ public class RejectPDU implements BerType, Serializable {
public byte[] code = null;
private Unsigned32 originalInvokeID = null;
private RejectReason rejectReason = null;
public RejectPDU() {}
public RejectPDU(byte[] code) {

@ -20,6 +20,7 @@ public class ServiceError implements BerType, Serializable {
private ErrorClass errorClass = null;
private BerInteger additionalCode = null;
private BerVisibleString additionalDescription = null;
public ServiceError() {}
public ServiceError(byte[] code) {

@ -32,7 +32,9 @@ public class TypeDescription implements BerType, Serializable {
private BerBoolean binaryTime = null;
private Integer32 mMSString = null;
private BerNull utcTime = null;
public TypeDescription() {}
public TypeDescription(byte[] code) {
this.code = code;
}
@ -613,6 +615,7 @@ public class TypeDescription implements BerType, Serializable {
public byte[] code = null;
private BerBoolean packed = null;
private Components components = null;
public Structure() {}
public Structure(byte[] code) {
@ -764,6 +767,7 @@ public class TypeDescription implements BerType, Serializable {
private static final long serialVersionUID = 1L;
public byte[] code = null;
private List<SEQUENCE> seqOf = null;
public Components() {
seqOf = new ArrayList<SEQUENCE>();
}

@ -19,6 +19,7 @@ public class VariableDefs implements BerType, Serializable {
private static final long serialVersionUID = 1L;
public byte[] code = null;
private List<SEQUENCE> seqOf = null;
public VariableDefs() {
seqOf = new ArrayList<SEQUENCE>();
}

@ -20,6 +20,7 @@ public class WriteRequest implements BerType, Serializable {
public byte[] code = null;
private VariableAccessSpecification variableAccessSpecification = null;
private ListOfData listOfData = null;
public WriteRequest() {}
public WriteRequest(byte[] code) {

@ -20,6 +20,7 @@ public class WriteResponse implements BerType, Serializable {
private static final long serialVersionUID = 1L;
public byte[] code = null;
private List<CHOICE> seqOf = null;
public WriteResponse() {
seqOf = new ArrayList<CHOICE>();
}

@ -13,6 +13,11 @@
*/
package com.beanit.josistack;
import com.beanit.jasn1.ber.ReverseByteArrayOutputStream;
import com.beanit.jasn1.ber.types.BerAny;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.jasn1.ber.types.BerObjectIdentifier;
import com.beanit.jasn1.ber.types.string.BerGraphicString;
import com.beanit.josistack.internal.acse.asn1.AAREApdu;
import com.beanit.josistack.internal.acse.asn1.AARQApdu;
import com.beanit.josistack.internal.acse.asn1.ACSEApdu;
@ -53,11 +58,6 @@ import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.concurrent.TimeoutException;
import org.openmuc.jasn1.ber.ReverseByteArrayOutputStream;
import org.openmuc.jasn1.ber.types.BerAny;
import org.openmuc.jasn1.ber.types.BerInteger;
import org.openmuc.jasn1.ber.types.BerObjectIdentifier;
import org.openmuc.jasn1.ber.types.string.BerGraphicString;
public final class AcseAssociation {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerBitString;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.Integer32;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import org.openmuc.jasn1.ber.types.BerBitString;
public abstract class BdaBitString extends BasicDataAttribute {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerBoolean;
import com.beanit.jasn1.ber.types.BerNull;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import org.openmuc.jasn1.ber.types.BerBoolean;
import org.openmuc.jasn1.ber.types.BerNull;
public final class BdaBoolean extends BasicDataAttribute {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerBoolean;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TimeOfDay;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import org.openmuc.jasn1.ber.types.BerBoolean;
/**
* BdaEntryTime stores time in terms of days and ms since 1984.

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import com.beanit.openiec61850.internal.mms.asn1.Unsigned8;
import org.openmuc.jasn1.ber.types.BerInteger;
public final class BdaInt128 extends BasicDataAttribute {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import com.beanit.openiec61850.internal.mms.asn1.Unsigned8;
import org.openmuc.jasn1.ber.types.BerInteger;
public final class BdaInt16 extends BasicDataAttribute {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import com.beanit.openiec61850.internal.mms.asn1.Unsigned8;
import org.openmuc.jasn1.ber.types.BerInteger;
public final class BdaInt16U extends BasicDataAttribute {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import com.beanit.openiec61850.internal.mms.asn1.Unsigned8;
import org.openmuc.jasn1.ber.types.BerInteger;
public final class BdaInt32 extends BasicDataAttribute {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import com.beanit.openiec61850.internal.mms.asn1.Unsigned8;
import org.openmuc.jasn1.ber.types.BerInteger;
public final class BdaInt32U extends BasicDataAttribute {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import com.beanit.openiec61850.internal.mms.asn1.Unsigned8;
import org.openmuc.jasn1.ber.types.BerInteger;
public final class BdaInt64 extends BasicDataAttribute {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import com.beanit.openiec61850.internal.mms.asn1.Unsigned8;
import org.openmuc.jasn1.ber.types.BerInteger;
public final class BdaInt8 extends BasicDataAttribute {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import com.beanit.openiec61850.internal.mms.asn1.Unsigned8;
import org.openmuc.jasn1.ber.types.BerInteger;
public final class BdaInt8U extends BasicDataAttribute {

@ -13,11 +13,11 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerOctetString;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.Integer32;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import java.util.Arrays;
import org.openmuc.jasn1.ber.types.BerOctetString;
public final class BdaOctetString extends BasicDataAttribute {

@ -13,12 +13,12 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerNull;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import com.beanit.openiec61850.internal.mms.asn1.UtcTime;
import java.util.Calendar;
import java.util.Date;
import org.openmuc.jasn1.ber.types.BerNull;
public final class BdaTimestamp extends BasicDataAttribute {

@ -13,10 +13,10 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.string.BerVisibleString;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.Integer32;
import com.beanit.openiec61850.internal.mms.asn1.TypeDescription;
import org.openmuc.jasn1.ber.types.string.BerVisibleString;
public final class BdaVisibleString extends BasicDataAttribute {

@ -13,6 +13,12 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.ReverseByteArrayOutputStream;
import com.beanit.jasn1.ber.types.BerBoolean;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.jasn1.ber.types.BerNull;
import com.beanit.jasn1.ber.types.string.BerGraphicString;
import com.beanit.jasn1.ber.types.string.BerVisibleString;
import com.beanit.josistack.AcseAssociation;
import com.beanit.josistack.ByteBufferInputStream;
import com.beanit.josistack.ClientAcseSap;
@ -80,12 +86,6 @@ import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import org.openmuc.jasn1.ber.ReverseByteArrayOutputStream;
import org.openmuc.jasn1.ber.types.BerBoolean;
import org.openmuc.jasn1.ber.types.BerInteger;
import org.openmuc.jasn1.ber.types.BerNull;
import org.openmuc.jasn1.ber.types.string.BerGraphicString;
import org.openmuc.jasn1.ber.types.string.BerVisibleString;
/**
* Represents an association/connection to an IEC 61850 MMS server. An instance of <code>

@ -13,6 +13,11 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.ReverseByteArrayOutputStream;
import com.beanit.jasn1.ber.types.BerBoolean;
import com.beanit.jasn1.ber.types.BerInteger;
import com.beanit.jasn1.ber.types.BerNull;
import com.beanit.jasn1.ber.types.string.BerVisibleString;
import com.beanit.josistack.AcseAssociation;
import com.beanit.josistack.ByteBufferInputStream;
import com.beanit.josistack.DecodingException;
@ -74,11 +79,6 @@ import java.util.ListIterator;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeoutException;
import org.openmuc.jasn1.ber.ReverseByteArrayOutputStream;
import org.openmuc.jasn1.ber.types.BerBoolean;
import org.openmuc.jasn1.ber.types.BerInteger;
import org.openmuc.jasn1.ber.types.BerNull;
import org.openmuc.jasn1.ber.types.string.BerVisibleString;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@ -13,6 +13,7 @@
*/
package com.beanit.openiec61850;
import com.beanit.jasn1.ber.types.BerBitString;
import com.beanit.openiec61850.internal.mms.asn1.AccessResult;
import com.beanit.openiec61850.internal.mms.asn1.Data;
import com.beanit.openiec61850.internal.mms.asn1.Identifier;
@ -30,7 +31,6 @@ import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import com.beanit.jasn1.ber.types.BerBitString;
public class Urcb extends Rcb {

Loading…
Cancel
Save