|
|
|
@ -13,28 +13,6 @@
|
|
|
|
|
*/
|
|
|
|
|
package com.beanit.openiec61850;
|
|
|
|
|
|
|
|
|
|
import java.io.ByteArrayInputStream;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.net.InetAddress;
|
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
|
import java.text.ParseException;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Calendar;
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.Iterator;
|
|
|
|
|
import java.util.LinkedList;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
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;
|
|
|
|
|
import com.beanit.josistack.AcseAssociation;
|
|
|
|
|
import com.beanit.josistack.ByteBufferInputStream;
|
|
|
|
|
import com.beanit.josistack.ClientAcseSap;
|
|
|
|
@ -86,6 +64,28 @@ import com.beanit.openiec61850.internal.mms.asn1.VariableDefs;
|
|
|
|
|
import com.beanit.openiec61850.internal.mms.asn1.WriteRequest;
|
|
|
|
|
import com.beanit.openiec61850.internal.mms.asn1.WriteRequest.ListOfData;
|
|
|
|
|
import com.beanit.openiec61850.internal.mms.asn1.WriteResponse;
|
|
|
|
|
import java.io.ByteArrayInputStream;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.net.InetAddress;
|
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
|
import java.text.ParseException;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Calendar;
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.Iterator;
|
|
|
|
|
import java.util.LinkedList;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
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>
|
|
|
|
|