diff --git a/README.md b/README.md index 833d9bc..eaa21c8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OpenIEC61850 -OpenIEC61850 is a library implementing the IEC 61850 standard based on the MMS mapping for client and server communication. +# IEC61850bean +IEC61850bean (previously known as OpenIEC61850) is a library implementing the IEC 61850 standard based on the MMS mapping for client and server communication. -For detailed information on OpenIEC61850 visit https://www.beanit.com/iec-61850/. OpenIEC61850 has recently been moved from https://www.openmuc.org to https://www.beanit.com . +For detailed information on IEC61850bean visit https://www.beanit.com/iec-61850/. diff --git a/asn1/mms/compile.sh b/asn1/mms/compile.sh index 90566da..36952b4 100755 --- a/asn1/mms/compile.sh +++ b/asn1/mms/compile.sh @@ -2,6 +2,6 @@ cd `dirname $0` -rm -r ../../src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/* +rm -r ../../src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/* -asn1bean-compiler -o "../../src/main/java-gen" -p "com.beanit.openiec61850.internal.mms" -f mms.asn -dv +asn1bean-compiler -o "../../src/main/java-gen" -p "com.beanit.iec61850bean.internal.mms" -f mms.asn -dv diff --git a/asn1/mms/rename-berboolean.sh b/asn1/mms/rename-berboolean.sh index 3d1fa51..f806c3b 100755 --- a/asn1/mms/rename-berboolean.sh +++ b/asn1/mms/rename-berboolean.sh @@ -2,4 +2,4 @@ cd `dirname $0` -find ../../ -iname "*.java" | xargs sed -i 's/import com\.beanit\.asn1bean\.ber\.types\.BerBoolean/import com\.beanit\.openiec61850\.internal\.BerBoolean/g' +find ../../ -iname "*.java" | xargs sed -i 's/import com\.beanit\.asn1bean\.ber\.types\.BerBoolean/import com\.beanit\.iec61850bean\.internal\.BerBoolean/g' diff --git a/bin/openiec61850-console-client b/bin/iec61850bean-console-client similarity index 93% rename from bin/openiec61850-console-client rename to bin/iec61850bean-console-client index 1fe5b0a..679b62f 100755 --- a/bin/openiec61850-console-client +++ b/bin/iec61850bean-console-client @@ -1,7 +1,7 @@ #!/bin/bash JARS_LOCATION="build/libs-all" -MAIN_CLASS="com.beanit.openiec61850.app.ConsoleClient" +MAIN_CLASS="com.beanit.iec61850bean.app.ConsoleClient" SYSPROPS="" PARAMS="" diff --git a/bin/openiec61850-console-client.bat b/bin/iec61850bean-console-client.bat similarity index 59% rename from bin/openiec61850-console-client.bat rename to bin/iec61850bean-console-client.bat index cb54f7e..4eb5cd8 100644 --- a/bin/openiec61850-console-client.bat +++ b/bin/iec61850bean-console-client.bat @@ -3,4 +3,4 @@ set BATDIR=%~dp0 set LIBDIR=%BATDIR%..\build\libs-all -java -Djava.ext.dirs=%LIBDIR% com.beanit.openiec61850.app.ConsoleClient %* +java -Djava.ext.dirs=%LIBDIR% com.beanit.iec61850bean.app.ConsoleClient %* diff --git a/bin/openiec61850-console-server b/bin/iec61850bean-console-server similarity index 93% rename from bin/openiec61850-console-server rename to bin/iec61850bean-console-server index 914c9da..6065200 100755 --- a/bin/openiec61850-console-server +++ b/bin/iec61850bean-console-server @@ -1,7 +1,7 @@ #!/bin/bash JARS_LOCATION="build/libs-all" -MAIN_CLASS="com.beanit.openiec61850.app.ConsoleServer" +MAIN_CLASS="com.beanit.iec61850bean.app.ConsoleServer" SYSPROPS="-Dlogback.configurationFile=logback.xml" # Attempt to set APP_HOME (from Gradle start script) diff --git a/bin/openiec61850-console-server.bat b/bin/iec61850bean-console-server.bat similarity index 73% rename from bin/openiec61850-console-server.bat rename to bin/iec61850bean-console-server.bat index 3cedb3f..1f23da8 100644 --- a/bin/openiec61850-console-server.bat +++ b/bin/iec61850bean-console-server.bat @@ -3,4 +3,4 @@ set BATDIR=%~dp0 set LIBDIR=%BATDIR%..\build\libs-all -java -Dlogback.configurationFile=logback.xml -Djava.ext.dirs=%LIBDIR% com.beanit.openiec61850.app.ConsoleServer %* +java -Dlogback.configurationFile=logback.xml -Djava.ext.dirs=%LIBDIR% com.beanit.iec61850bean.app.ConsoleServer %* diff --git a/bin/openiec61850-gui-client b/bin/iec61850bean-gui-client similarity index 93% rename from bin/openiec61850-gui-client rename to bin/iec61850bean-gui-client index 30f1943..8305fd8 100755 --- a/bin/openiec61850-gui-client +++ b/bin/iec61850bean-gui-client @@ -1,7 +1,7 @@ #!/bin/bash JARS_LOCATION="build/libs-all" -MAIN_CLASS="com.beanit.openiec61850.clientgui.ClientGui" +MAIN_CLASS="com.beanit.iec61850bean.clientgui.ClientGui" SYSPROPS="" PARAMS="" diff --git a/bin/openiec61850-gui-client.bat b/bin/iec61850bean-gui-client.bat similarity index 59% rename from bin/openiec61850-gui-client.bat rename to bin/iec61850bean-gui-client.bat index bdb433d..f8ead49 100644 --- a/bin/openiec61850-gui-client.bat +++ b/bin/iec61850bean-gui-client.bat @@ -3,4 +3,4 @@ set BATDIR=%~dp0 set LIBDIR=%BATDIR%..\build\libs-all -java -Djava.ext.dirs=%LIBDIR% com.beanit.openiec61850.clientgui.ClientGui %* +java -Djava.ext.dirs=%LIBDIR% com.beanit.iec61850bean.clientgui.ClientGui %* diff --git a/build.gradle.kts b/build.gradle.kts index ece8a4f..8f12032 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -31,7 +31,7 @@ val javaProjects: Set = allprojects val distributionProjects = javaProjects val docProjects = javaProjects val repositoryProjects = javaProjects -val cfgModuleName = "com.beanit.openiec61850" +val cfgModuleName = "com.beanit.iec61850bean" tasks.register("tar") { into(project.name) { @@ -71,11 +71,11 @@ dependencies { runtimeOnly("ch.qos.logback:logback-classic:1.2.3") } -project.extra["cfgModuleName"] = "com.beanit.openiec61850" +project.extra["cfgModuleName"] = "com.beanit.iec61850bean" tasks["jar"].withConvention(aQute.bnd.gradle.BundleTaskConvention::class) { bnd(""" - Bundle-Name: OpenIEC61850 + Bundle-Name: IEC61850bean Bundle-SymbolicName: ${project.extra["cfgModuleName"]} -exportcontents: !*.internal.*,* Import-Package: com.beanit.asn1bean.*,javax.net,*;resolution:=optional @@ -94,8 +94,8 @@ sourceSets { publishing { publications { maybeCreate("mavenJava").pom { - name.set("OpenIEC61850") - description.set("OpenIEC61850 is a Java library implementing the IEC 61850 MMS communication standard for clients and servers.") + name.set("IEC61850bean") + description.set("IEC61850bean is a Java library implementing the IEC 61850 MMS communication standard for clients and servers.") licenses { license { diff --git a/doc/openiec61850-user-guide.md b/doc/iec61850bean-user-guide.md similarity index 83% rename from doc/openiec61850-user-guide.md rename to doc/iec61850bean-user-guide.md index 188c91c..d60c634 100644 --- a/doc/openiec61850-user-guide.md +++ b/doc/iec61850bean-user-guide.md @@ -1,23 +1,23 @@ -# OpenIEC61850 User Guide +# IEC61850bean User Guide * unnumbered toc {:toc} ## Intro -OpenIEC61850 is a library implementing the IEC 61850 standard based on the MMS mapping for client and server communication. It is licensed under the Apache 2.0 license. OpenIEC61850 includes a console client and server as well as a GUI client. +IEC61850bean (previously known as OpenIEC61850) is a library implementing the IEC 61850 standard based on the MMS mapping for client and server communication. It is licensed under the Apache 2.0 license. IEC61850bean includes a console client and server as well as a GUI client. ### Distribution -After extracting the distribution tar file, the OpenIEC61850 library can be found in the folder *build/libs-all*. +After extracting the distribution tar file, the IEC61850bean library can be found in the folder *build/libs-all*. #### Dependencies -Besides the OpenIEC61850 library the folder *build/libs-all/* contains the following external libraries: +Besides the IEC61850bean library the folder *build/libs-all/* contains the following external libraries: * *asn1bean* - the ASN.1 BER encoding/decoding library by beanit, license: Apache 2.0, https://www.beanit.com -* *slf4j-api* - a popular logging API. It is only needed if openiec61850 is used to implement a server. The client part does not log anything. License: MIT, http://www.slf4j.org +* *slf4j-api* - a popular logging API. It is only needed if iec61850bean is used to implement a server. The client part does not log anything. License: MIT, http://www.slf4j.org * *logback-core/logback-classic* - an actual logger implementation of the slf4-api. It is used by the console server application to output log information. It can be replaced by a logger of your choice that supports the slf4j API. Like slf4j it is only needed for server implementations. License: EPLv1.0 and LGPLv2.1, http://logback.qos.ch @@ -30,16 +30,16 @@ You can execute the console client and server through the scripts found in the * ### OSI Stack -The OpenIEC61850 library includes an OSI stack implementation as it is needed by the IEC 61850 MMS mapping. The API of the OSI stack and the OSI transport layers are made public so that they can be used by other projects. +The IEC61850bean library includes an OSI stack implementation as it is needed by the IEC 61850 MMS mapping. The API of the OSI stack and the OSI transport layers are made public so that they can be used by other projects. * *josistack* - implements the Application Control Service Element (ACSE) protocol as defined by ISO 8650 or ITU X.217/X.227, the lower ISO Presentation Layer as defined by ISO 8823/ITU X226, and the ISO Session Layer as defined by 8327/ITU X.225. * *jositransport* - implements RFC 1006 and the OSI Transport Service Layer. -## Using OpenIEC61850 +## Using IEC61850bean -The easiest way to learn how OpenIEC61850 works is by running and analyzing the console client and server applications. You might want to look at the source code of the console applications to get an understanding of how they work. They can be used as a basis for you to code your individual client or server applications. An IEC 61850 device that is to be controlled or monitored is called an IEC 61850 server. An IEC 61850 server normally listens on port 102 for incoming connection requests by IEC 61850 clients. +The easiest way to learn how IEC61850bean works is by running and analyzing the console client and server applications. You might want to look at the source code of the console applications to get an understanding of how they work. They can be used as a basis for you to code your individual client or server applications. An IEC 61850 device that is to be controlled or monitored is called an IEC 61850 server. An IEC 61850 server normally listens on port 102 for incoming connection requests by IEC 61850 clients. ### Client @@ -53,9 +53,9 @@ First get a List of ServerSaps using the method ServerSap.getSapsFromSclFile(). An IEC 61850 server contains a treelike data model that contains at its leafs the data (integers, boolean, strings etc) that can be accessed by clients. Clients can also retrieve the whole data model from the server. -The upper most model node is called "server". In OpenIEC61850 it is an object of type ServerModel. The server node contains 1..n logical devices (LD). A logical device may contain 1..n logical nodes (LN). A logical node may contain 1..n data objects. In OpenIEC61850 the logical nodes do not contain complete data objects but instead contain so called functionally constraint data objects (FCDO). An FCDO is a data object that is split up by functional constraint. An FCDO can contain a combination of other FCDOs, arrays, constructed data attributes and/or basic data attributes. +The upper most model node is called "server". In IEC61850bean it is an object of type ServerModel. The server node contains 1..n logical devices (LD). A logical device may contain 1..n logical nodes (LN). A logical node may contain 1..n data objects. In IEC61850bean the logical nodes do not contain complete data objects but instead contain so called functionally constraint data objects (FCDO). An FCDO is a data object that is split up by functional constraint. An FCDO can contain a combination of other FCDOs, arrays, constructed data attributes and/or basic data attributes. -All nodes of the server model in OpenIEC61850 are of one of the following seven types: +All nodes of the server model in IEC61850bean are of one of the following seven types: * ServerModel * LogicalDevice @@ -79,6 +79,6 @@ You can then navigate through the model using several functions: -## Modifying and Compiling OpenIEC61850 +## Modifying and Compiling IEC61850bean We use the Gradle build automation tool. The distribution contains a fully functional gradle build file (*build.gradle*). Thus if you changed code and want to rebuild a library you can do it easily with Gradle. diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/AccessResult.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/AccessResult.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/AccessResult.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/AccessResult.java index 99fdf51..a7c4e32 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/AccessResult.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/AccessResult.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/AlternateAccess.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/AlternateAccess.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/AlternateAccess.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/AlternateAccess.java index 412aba0..73bc41a 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/AlternateAccess.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/AlternateAccess.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/AlternateAccessSelection.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/AlternateAccessSelection.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/AlternateAccessSelection.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/AlternateAccessSelection.java index 2068ae4..5a6087c 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/AlternateAccessSelection.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/AlternateAccessSelection.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/BasicIdentifier.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/BasicIdentifier.java similarity index 87% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/BasicIdentifier.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/BasicIdentifier.java index c45f6d8..8af8860 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/BasicIdentifier.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/BasicIdentifier.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.string.BerVisibleString; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConcludeRequestPDU.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConcludeRequestPDU.java similarity index 86% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConcludeRequestPDU.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConcludeRequestPDU.java index 69ea911..870feff 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConcludeRequestPDU.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConcludeRequestPDU.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerNull; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedErrorPDU.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedErrorPDU.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedErrorPDU.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedErrorPDU.java index 914dae0..510ce48 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedErrorPDU.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedErrorPDU.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedRequestPDU.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedRequestPDU.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedRequestPDU.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedRequestPDU.java index 139d4e7..5ec3ed7 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedRequestPDU.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedRequestPDU.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedResponsePDU.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedResponsePDU.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedResponsePDU.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedResponsePDU.java index 9d968f2..d0a19ac 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedResponsePDU.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedResponsePDU.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedServiceRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedServiceRequest.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedServiceRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedServiceRequest.java index f57e2db..3ea2307 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedServiceRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedServiceRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedServiceResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedServiceResponse.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedServiceResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedServiceResponse.java index d6937b9..2342681 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ConfirmedServiceResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ConfirmedServiceResponse.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Data.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Data.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Data.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Data.java index a1c8f3b..9f7a466 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Data.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Data.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; @@ -9,7 +9,7 @@ import com.beanit.asn1bean.ber.types.BerInteger; import com.beanit.asn1bean.ber.types.BerOctetString; import com.beanit.asn1bean.ber.types.BerType; import com.beanit.asn1bean.ber.types.string.BerVisibleString; -import com.beanit.openiec61850.internal.BerBoolean; +import com.beanit.iec61850bean.internal.BerBoolean; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DataAccessError.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DataAccessError.java similarity index 90% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DataAccessError.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DataAccessError.java index 83eab32..2b7e08e 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DataAccessError.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DataAccessError.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerInteger; import java.math.BigInteger; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DefineNamedVariableListRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DefineNamedVariableListRequest.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DefineNamedVariableListRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DefineNamedVariableListRequest.java index d86c759..1ffefd9 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DefineNamedVariableListRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DefineNamedVariableListRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DefineNamedVariableListResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DefineNamedVariableListResponse.java similarity index 88% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DefineNamedVariableListResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DefineNamedVariableListResponse.java index 2c7bf64..c5ee242 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DefineNamedVariableListResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DefineNamedVariableListResponse.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerNull; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DeleteNamedVariableListRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DeleteNamedVariableListRequest.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DeleteNamedVariableListRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DeleteNamedVariableListRequest.java index 9ffd09a..28de7d8 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DeleteNamedVariableListRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DeleteNamedVariableListRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DeleteNamedVariableListResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DeleteNamedVariableListResponse.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DeleteNamedVariableListResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DeleteNamedVariableListResponse.java index e8cbb32..915bf1a 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DeleteNamedVariableListResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DeleteNamedVariableListResponse.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DirectoryEntry.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DirectoryEntry.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DirectoryEntry.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DirectoryEntry.java index 042bb20..4ce2ff3 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/DirectoryEntry.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/DirectoryEntry.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileAttributes.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileAttributes.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileAttributes.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileAttributes.java index 7798ee4..5cb5147 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileAttributes.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileAttributes.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileCloseRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileCloseRequest.java similarity index 89% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileCloseRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileCloseRequest.java index 3e18e7d..1295cc2 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileCloseRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileCloseRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import java.math.BigInteger; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileCloseResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileCloseResponse.java similarity index 86% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileCloseResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileCloseResponse.java index 46bed99..40a5fd7 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileCloseResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileCloseResponse.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerNull; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDeleteRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDeleteRequest.java similarity index 85% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDeleteRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDeleteRequest.java index 303028f..35c01f4 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDeleteRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDeleteRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; public class FileDeleteRequest extends FileName { diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDeleteResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDeleteResponse.java similarity index 86% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDeleteResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDeleteResponse.java index 034c888..0ae6eaf 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDeleteResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDeleteResponse.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerNull; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDirectoryRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDirectoryRequest.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDirectoryRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDirectoryRequest.java index 252fd5f..ee2712a 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDirectoryRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDirectoryRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDirectoryResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDirectoryResponse.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDirectoryResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDirectoryResponse.java index e423118..024519e 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileDirectoryResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileDirectoryResponse.java @@ -1,11 +1,11 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; import com.beanit.asn1bean.ber.types.BerType; -import com.beanit.openiec61850.internal.BerBoolean; +import com.beanit.iec61850bean.internal.BerBoolean; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileName.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileName.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileName.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileName.java index eadd30e..0efab22 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileName.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileName.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileOpenRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileOpenRequest.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileOpenRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileOpenRequest.java index bb7eec8..7be81ab 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileOpenRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileOpenRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileOpenResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileOpenResponse.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileOpenResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileOpenResponse.java index 08d67fb..b15bc0f 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileOpenResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileOpenResponse.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileReadRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileReadRequest.java similarity index 89% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileReadRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileReadRequest.java index 87c455c..394025b 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileReadRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileReadRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import java.math.BigInteger; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileReadResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileReadResponse.java similarity index 97% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileReadResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileReadResponse.java index 6fae517..563f546 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FileReadResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FileReadResponse.java @@ -1,12 +1,12 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; import com.beanit.asn1bean.ber.types.BerOctetString; import com.beanit.asn1bean.ber.types.BerType; -import com.beanit.openiec61850.internal.BerBoolean; +import com.beanit.iec61850bean.internal.BerBoolean; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FloatingPoint.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FloatingPoint.java similarity index 86% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FloatingPoint.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FloatingPoint.java index ab6baf9..c5336f2 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/FloatingPoint.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/FloatingPoint.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerOctetString; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNameListRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNameListRequest.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNameListRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNameListRequest.java index 5088f30..ef3e08b 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNameListRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNameListRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNameListResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNameListResponse.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNameListResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNameListResponse.java index c06d852..93940ae 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNameListResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNameListResponse.java @@ -1,11 +1,11 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; import com.beanit.asn1bean.ber.types.BerType; -import com.beanit.openiec61850.internal.BerBoolean; +import com.beanit.iec61850bean.internal.BerBoolean; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNamedVariableListAttributesRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNamedVariableListAttributesRequest.java similarity index 87% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNamedVariableListAttributesRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNamedVariableListAttributesRequest.java index 5720fa9..c6af7f8 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNamedVariableListAttributesRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNamedVariableListAttributesRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; public class GetNamedVariableListAttributesRequest extends ObjectName { diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNamedVariableListAttributesResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNamedVariableListAttributesResponse.java similarity index 97% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNamedVariableListAttributesResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNamedVariableListAttributesResponse.java index 203bd37..90e730c 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetNamedVariableListAttributesResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetNamedVariableListAttributesResponse.java @@ -1,11 +1,11 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; import com.beanit.asn1bean.ber.types.BerType; -import com.beanit.openiec61850.internal.BerBoolean; +import com.beanit.iec61850bean.internal.BerBoolean; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetVariableAccessAttributesRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetVariableAccessAttributesRequest.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetVariableAccessAttributesRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetVariableAccessAttributesRequest.java index b152c1c..c3bbcaf 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetVariableAccessAttributesRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetVariableAccessAttributesRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetVariableAccessAttributesResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetVariableAccessAttributesResponse.java similarity index 97% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetVariableAccessAttributesResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetVariableAccessAttributesResponse.java index 0ec1de6..a95bacf 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/GetVariableAccessAttributesResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/GetVariableAccessAttributesResponse.java @@ -1,11 +1,11 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; import com.beanit.asn1bean.ber.types.BerType; -import com.beanit.openiec61850.internal.BerBoolean; +import com.beanit.iec61850bean.internal.BerBoolean; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Identifier.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Identifier.java similarity index 86% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Identifier.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Identifier.java index bdbcf19..36e3045 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Identifier.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Identifier.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.string.BerVisibleString; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InformationReport.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InformationReport.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InformationReport.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InformationReport.java index 7f40297..393adc0 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InformationReport.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InformationReport.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InitiateErrorPDU.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InitiateErrorPDU.java similarity index 85% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InitiateErrorPDU.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InitiateErrorPDU.java index 875bcc4..535b045 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InitiateErrorPDU.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InitiateErrorPDU.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; public class InitiateErrorPDU extends ServiceError { diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InitiateRequestPDU.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InitiateRequestPDU.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InitiateRequestPDU.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InitiateRequestPDU.java index 3a35c72..e0899a4 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InitiateRequestPDU.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InitiateRequestPDU.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InitiateResponsePDU.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InitiateResponsePDU.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InitiateResponsePDU.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InitiateResponsePDU.java index d1b1159..33184b2 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/InitiateResponsePDU.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/InitiateResponsePDU.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Integer16.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Integer16.java similarity index 90% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Integer16.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Integer16.java index 7c8e120..d81bb47 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Integer16.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Integer16.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerInteger; import java.math.BigInteger; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Integer32.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Integer32.java similarity index 90% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Integer32.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Integer32.java index f36dbb4..6e5723e 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Integer32.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Integer32.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerInteger; import java.math.BigInteger; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Integer8.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Integer8.java similarity index 90% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Integer8.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Integer8.java index a1c3d6c..d24736c 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Integer8.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Integer8.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerInteger; import java.math.BigInteger; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/MMSString.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/MMSString.java similarity index 86% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/MMSString.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/MMSString.java index 5e9b889..cf9fa7a 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/MMSString.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/MMSString.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.string.BerVisibleString; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/MMSpdu.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/MMSpdu.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/MMSpdu.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/MMSpdu.java index 1dc5913..d5e1a4f 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/MMSpdu.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/MMSpdu.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ObjectClass.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ObjectClass.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ObjectClass.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ObjectClass.java index a7c0537..8db6fdc 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ObjectClass.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ObjectClass.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ObjectName.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ObjectName.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ObjectName.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ObjectName.java index a49492f..f3dddfa 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ObjectName.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ObjectName.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ParameterSupportOptions.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ParameterSupportOptions.java similarity index 91% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ParameterSupportOptions.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ParameterSupportOptions.java index 8d99862..2b8b6fe 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ParameterSupportOptions.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ParameterSupportOptions.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerBitString; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ReadRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ReadRequest.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ReadRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ReadRequest.java index eef0f20..d87c5a3 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ReadRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ReadRequest.java @@ -1,11 +1,11 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; import com.beanit.asn1bean.ber.types.BerType; -import com.beanit.openiec61850.internal.BerBoolean; +import com.beanit.iec61850bean.internal.BerBoolean; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ReadResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ReadResponse.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ReadResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ReadResponse.java index 7a11820..eff5e46 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ReadResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ReadResponse.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/RejectPDU.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/RejectPDU.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/RejectPDU.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/RejectPDU.java index 1ee1adf..3d0f4a4 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/RejectPDU.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/RejectPDU.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ServiceError.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ServiceError.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ServiceError.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ServiceError.java index 2ddfba9..0e43b1e 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ServiceError.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ServiceError.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ServiceSupportOptions.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ServiceSupportOptions.java similarity index 91% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ServiceSupportOptions.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ServiceSupportOptions.java index b4f6127..a8c1f2c 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/ServiceSupportOptions.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/ServiceSupportOptions.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerBitString; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/TimeOfDay.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/TimeOfDay.java similarity index 86% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/TimeOfDay.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/TimeOfDay.java index c874dcf..298c2ff 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/TimeOfDay.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/TimeOfDay.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerOctetString; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/TypeDescription.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/TypeDescription.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/TypeDescription.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/TypeDescription.java index 7f12f7b..aa54a79 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/TypeDescription.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/TypeDescription.java @@ -1,12 +1,12 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; import com.beanit.asn1bean.ber.types.BerNull; import com.beanit.asn1bean.ber.types.BerType; -import com.beanit.openiec61850.internal.BerBoolean; +import com.beanit.iec61850bean.internal.BerBoolean; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/TypeSpecification.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/TypeSpecification.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/TypeSpecification.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/TypeSpecification.java index 7a0dd69..9d0c193 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/TypeSpecification.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/TypeSpecification.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/UnconfirmedPDU.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/UnconfirmedPDU.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/UnconfirmedPDU.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/UnconfirmedPDU.java index eb38a22..9841734 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/UnconfirmedPDU.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/UnconfirmedPDU.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/UnconfirmedService.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/UnconfirmedService.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/UnconfirmedService.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/UnconfirmedService.java index 5031a96..043fd20 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/UnconfirmedService.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/UnconfirmedService.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerTag; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Unsigned16.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Unsigned16.java similarity index 90% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Unsigned16.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Unsigned16.java index c076c09..3e41077 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Unsigned16.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Unsigned16.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerInteger; import java.math.BigInteger; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Unsigned32.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Unsigned32.java similarity index 90% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Unsigned32.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Unsigned32.java index fdc7e25..1c0f414 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Unsigned32.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Unsigned32.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerInteger; import java.math.BigInteger; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Unsigned8.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Unsigned8.java similarity index 90% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Unsigned8.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Unsigned8.java index ada1d5f..a945fb3 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/Unsigned8.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/Unsigned8.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerInteger; import java.math.BigInteger; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/UtcTime.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/UtcTime.java similarity index 86% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/UtcTime.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/UtcTime.java index 3db9860..4af1593 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/UtcTime.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/UtcTime.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.types.BerOctetString; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/VariableAccessSpecification.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/VariableAccessSpecification.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/VariableAccessSpecification.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/VariableAccessSpecification.java index ecb4d37..8559b2e 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/VariableAccessSpecification.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/VariableAccessSpecification.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/VariableDefs.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/VariableDefs.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/VariableDefs.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/VariableDefs.java index c05d2f7..541fe9a 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/VariableDefs.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/VariableDefs.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/VariableSpecification.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/VariableSpecification.java similarity index 98% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/VariableSpecification.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/VariableSpecification.java index 54d93a6..8ea657d 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/VariableSpecification.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/VariableSpecification.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/WriteRequest.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/WriteRequest.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/WriteRequest.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/WriteRequest.java index eb9e741..fbf674a 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/WriteRequest.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/WriteRequest.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/WriteResponse.java b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/WriteResponse.java similarity index 99% rename from src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/WriteResponse.java rename to src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/WriteResponse.java index 5a1cf2e..52d42aa 100644 --- a/src/main/java-gen/com/beanit/openiec61850/internal/mms/asn1/WriteResponse.java +++ b/src/main/java-gen/com/beanit/iec61850bean/internal/mms/asn1/WriteResponse.java @@ -1,5 +1,5 @@ /** This class file was automatically generated by ASN1bean (http://www.beanit.com) */ -package com.beanit.openiec61850.internal.mms.asn1; +package com.beanit.iec61850bean.internal.mms.asn1; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java/com/beanit/openiec61850/AcseListener.java b/src/main/java/com/beanit/iec61850bean/AcseListener.java similarity index 93% rename from src/main/java/com/beanit/openiec61850/AcseListener.java rename to src/main/java/com/beanit/iec61850bean/AcseListener.java index 57b35c9..8d63dc8 100644 --- a/src/main/java/com/beanit/openiec61850/AcseListener.java +++ b/src/main/java/com/beanit/iec61850bean/AcseListener.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.josistack.AcseAssociation; import com.beanit.josistack.AcseAssociationListener; diff --git a/src/main/java/com/beanit/openiec61850/Array.java b/src/main/java/com/beanit/iec61850bean/Array.java similarity index 93% rename from src/main/java/com/beanit/openiec61850/Array.java rename to src/main/java/com/beanit/iec61850bean/Array.java index ef7d8b6..16fec45 100644 --- a/src/main/java/com/beanit/openiec61850/Array.java +++ b/src/main/java/com/beanit/iec61850bean/Array.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.mms.asn1.Data; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription; -import com.beanit.openiec61850.internal.mms.asn1.TypeSpecification; -import com.beanit.openiec61850.internal.mms.asn1.Unsigned32; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.TypeSpecification; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned32; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; diff --git a/src/main/java/com/beanit/openiec61850/BasicDataAttribute.java b/src/main/java/com/beanit/iec61850bean/BasicDataAttribute.java similarity index 97% rename from src/main/java/com/beanit/openiec61850/BasicDataAttribute.java rename to src/main/java/com/beanit/iec61850bean/BasicDataAttribute.java index f8e9444..4f083d6 100644 --- a/src/main/java/com/beanit/openiec61850/BasicDataAttribute.java +++ b/src/main/java/com/beanit/iec61850bean/BasicDataAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import java.util.ArrayList; import java.util.Collection; diff --git a/src/main/java/com/beanit/openiec61850/BdaBitString.java b/src/main/java/com/beanit/iec61850bean/BdaBitString.java similarity index 90% rename from src/main/java/com/beanit/openiec61850/BdaBitString.java rename to src/main/java/com/beanit/iec61850bean/BdaBitString.java index 4b64b17..12f2576 100644 --- a/src/main/java/com/beanit/openiec61850/BdaBitString.java +++ b/src/main/java/com/beanit/iec61850bean/BdaBitString.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,13 +11,13 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.ber.types.BerBitString; -import com.beanit.openiec61850.internal.HexString; -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 com.beanit.iec61850bean.internal.HexString; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.Integer32; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; public abstract class BdaBitString extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaBoolean.java b/src/main/java/com/beanit/iec61850bean/BdaBoolean.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/BdaBoolean.java rename to src/main/java/com/beanit/iec61850bean/BdaBoolean.java index fafe958..2f90c8d 100644 --- a/src/main/java/com/beanit/openiec61850/BdaBoolean.java +++ b/src/main/java/com/beanit/iec61850bean/BdaBoolean.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.ber.types.BerNull; -import com.beanit.openiec61850.internal.BerBoolean; -import com.beanit.openiec61850.internal.mms.asn1.Data; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.BerBoolean; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; public final class BdaBoolean extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaCheck.java b/src/main/java/com/beanit/iec61850bean/BdaCheck.java similarity index 96% rename from src/main/java/com/beanit/openiec61850/BdaCheck.java rename to src/main/java/com/beanit/iec61850bean/BdaCheck.java index c9a3a69..501883a 100644 --- a/src/main/java/com/beanit/openiec61850/BdaCheck.java +++ b/src/main/java/com/beanit/iec61850bean/BdaCheck.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; /** Check packed list according to 61850-7-2 */ public final class BdaCheck extends BdaBitString { diff --git a/src/main/java/com/beanit/openiec61850/BdaDoubleBitPos.java b/src/main/java/com/beanit/iec61850bean/BdaDoubleBitPos.java similarity index 96% rename from src/main/java/com/beanit/openiec61850/BdaDoubleBitPos.java rename to src/main/java/com/beanit/iec61850bean/BdaDoubleBitPos.java index 58edb0d..3fcd92e 100644 --- a/src/main/java/com/beanit/openiec61850/BdaDoubleBitPos.java +++ b/src/main/java/com/beanit/iec61850bean/BdaDoubleBitPos.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; public final class BdaDoubleBitPos extends BdaBitString { diff --git a/src/main/java/com/beanit/openiec61850/BdaEntryTime.java b/src/main/java/com/beanit/iec61850bean/BdaEntryTime.java similarity index 92% rename from src/main/java/com/beanit/openiec61850/BdaEntryTime.java rename to src/main/java/com/beanit/iec61850bean/BdaEntryTime.java index 6602304..73c5bd4 100644 --- a/src/main/java/com/beanit/openiec61850/BdaEntryTime.java +++ b/src/main/java/com/beanit/iec61850bean/BdaEntryTime.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.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 com.beanit.iec61850bean.internal.BerBoolean; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TimeOfDay; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; /** * BdaEntryTime stores time in terms of days and ms since 1984. diff --git a/src/main/java/com/beanit/openiec61850/BdaFloat32.java b/src/main/java/com/beanit/iec61850bean/BdaFloat32.java similarity index 91% rename from src/main/java/com/beanit/openiec61850/BdaFloat32.java rename to src/main/java/com/beanit/iec61850bean/BdaFloat32.java index b3c8349..199fc02 100644 --- a/src/main/java/com/beanit/openiec61850/BdaFloat32.java +++ b/src/main/java/com/beanit/iec61850bean/BdaFloat32.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.mms.asn1.Data; -import com.beanit.openiec61850.internal.mms.asn1.FloatingPoint; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription; -import com.beanit.openiec61850.internal.mms.asn1.Unsigned8; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.FloatingPoint; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned8; import java.nio.ByteBuffer; public final class BdaFloat32 extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaFloat64.java b/src/main/java/com/beanit/iec61850bean/BdaFloat64.java similarity index 92% rename from src/main/java/com/beanit/openiec61850/BdaFloat64.java rename to src/main/java/com/beanit/iec61850bean/BdaFloat64.java index 9be2514..3221548 100644 --- a/src/main/java/com/beanit/openiec61850/BdaFloat64.java +++ b/src/main/java/com/beanit/iec61850bean/BdaFloat64.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.mms.asn1.Data; -import com.beanit.openiec61850.internal.mms.asn1.FloatingPoint; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription; -import com.beanit.openiec61850.internal.mms.asn1.Unsigned8; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.FloatingPoint; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned8; import java.nio.ByteBuffer; public final class BdaFloat64 extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaInt128.java b/src/main/java/com/beanit/iec61850bean/BdaInt128.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/BdaInt128.java rename to src/main/java/com/beanit/iec61850bean/BdaInt128.java index 1e4ccaf..f8105d8 100644 --- a/src/main/java/com/beanit/openiec61850/BdaInt128.java +++ b/src/main/java/com/beanit/iec61850bean/BdaInt128.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned8; public final class BdaInt128 extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaInt16.java b/src/main/java/com/beanit/iec61850bean/BdaInt16.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/BdaInt16.java rename to src/main/java/com/beanit/iec61850bean/BdaInt16.java index db4c7f2..6ec3a5b 100644 --- a/src/main/java/com/beanit/openiec61850/BdaInt16.java +++ b/src/main/java/com/beanit/iec61850bean/BdaInt16.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned8; public final class BdaInt16 extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaInt16U.java b/src/main/java/com/beanit/iec61850bean/BdaInt16U.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/BdaInt16U.java rename to src/main/java/com/beanit/iec61850bean/BdaInt16U.java index 95b278a..590c6ae 100644 --- a/src/main/java/com/beanit/openiec61850/BdaInt16U.java +++ b/src/main/java/com/beanit/iec61850bean/BdaInt16U.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned8; public final class BdaInt16U extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaInt32.java b/src/main/java/com/beanit/iec61850bean/BdaInt32.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/BdaInt32.java rename to src/main/java/com/beanit/iec61850bean/BdaInt32.java index 79c96d1..5484aad 100644 --- a/src/main/java/com/beanit/openiec61850/BdaInt32.java +++ b/src/main/java/com/beanit/iec61850bean/BdaInt32.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned8; public final class BdaInt32 extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaInt32U.java b/src/main/java/com/beanit/iec61850bean/BdaInt32U.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/BdaInt32U.java rename to src/main/java/com/beanit/iec61850bean/BdaInt32U.java index 1d90dd3..d0e8ebd 100644 --- a/src/main/java/com/beanit/openiec61850/BdaInt32U.java +++ b/src/main/java/com/beanit/iec61850bean/BdaInt32U.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned8; public final class BdaInt32U extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaInt64.java b/src/main/java/com/beanit/iec61850bean/BdaInt64.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/BdaInt64.java rename to src/main/java/com/beanit/iec61850bean/BdaInt64.java index b784ac0..a6631cd 100644 --- a/src/main/java/com/beanit/openiec61850/BdaInt64.java +++ b/src/main/java/com/beanit/iec61850bean/BdaInt64.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned8; public final class BdaInt64 extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaInt8.java b/src/main/java/com/beanit/iec61850bean/BdaInt8.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/BdaInt8.java rename to src/main/java/com/beanit/iec61850bean/BdaInt8.java index 524f21f..dfdc8c0 100644 --- a/src/main/java/com/beanit/openiec61850/BdaInt8.java +++ b/src/main/java/com/beanit/iec61850bean/BdaInt8.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned8; public final class BdaInt8 extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaInt8U.java b/src/main/java/com/beanit/iec61850bean/BdaInt8U.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/BdaInt8U.java rename to src/main/java/com/beanit/iec61850bean/BdaInt8U.java index ae729c4..73211ce 100644 --- a/src/main/java/com/beanit/openiec61850/BdaInt8U.java +++ b/src/main/java/com/beanit/iec61850bean/BdaInt8U.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned8; public final class BdaInt8U extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaOctetString.java b/src/main/java/com/beanit/iec61850bean/BdaOctetString.java similarity index 91% rename from src/main/java/com/beanit/openiec61850/BdaOctetString.java rename to src/main/java/com/beanit/iec61850bean/BdaOctetString.java index e9aa2df..ef0f427 100644 --- a/src/main/java/com/beanit/openiec61850/BdaOctetString.java +++ b/src/main/java/com/beanit/iec61850bean/BdaOctetString.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.Integer32; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; import java.util.Arrays; public final class BdaOctetString extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaOptFlds.java b/src/main/java/com/beanit/iec61850bean/BdaOptFlds.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/BdaOptFlds.java rename to src/main/java/com/beanit/iec61850bean/BdaOptFlds.java index 2bd9d27..0342aef 100644 --- a/src/main/java/com/beanit/openiec61850/BdaOptFlds.java +++ b/src/main/java/com/beanit/iec61850bean/BdaOptFlds.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; public final class BdaOptFlds extends BdaBitString { diff --git a/src/main/java/com/beanit/openiec61850/BdaQuality.java b/src/main/java/com/beanit/iec61850bean/BdaQuality.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/BdaQuality.java rename to src/main/java/com/beanit/iec61850bean/BdaQuality.java index ea96c99..6acbfef 100644 --- a/src/main/java/com/beanit/openiec61850/BdaQuality.java +++ b/src/main/java/com/beanit/iec61850bean/BdaQuality.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import java.util.ArrayList; diff --git a/src/main/java/com/beanit/openiec61850/BdaReasonForInclusion.java b/src/main/java/com/beanit/iec61850bean/BdaReasonForInclusion.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/BdaReasonForInclusion.java rename to src/main/java/com/beanit/iec61850bean/BdaReasonForInclusion.java index 68108b9..b6e02c4 100644 --- a/src/main/java/com/beanit/openiec61850/BdaReasonForInclusion.java +++ b/src/main/java/com/beanit/iec61850bean/BdaReasonForInclusion.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; public final class BdaReasonForInclusion extends BdaBitString { diff --git a/src/main/java/com/beanit/openiec61850/BdaTapCommand.java b/src/main/java/com/beanit/iec61850bean/BdaTapCommand.java similarity index 96% rename from src/main/java/com/beanit/openiec61850/BdaTapCommand.java rename to src/main/java/com/beanit/iec61850bean/BdaTapCommand.java index 5c90dfe..8a3e040 100644 --- a/src/main/java/com/beanit/openiec61850/BdaTapCommand.java +++ b/src/main/java/com/beanit/iec61850bean/BdaTapCommand.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; public final class BdaTapCommand extends BdaBitString { diff --git a/src/main/java/com/beanit/openiec61850/BdaTimestamp.java b/src/main/java/com/beanit/iec61850bean/BdaTimestamp.java similarity index 97% rename from src/main/java/com/beanit/openiec61850/BdaTimestamp.java rename to src/main/java/com/beanit/iec61850bean/BdaTimestamp.java index 41ad2fa..acb4721 100644 --- a/src/main/java/com/beanit/openiec61850/BdaTimestamp.java +++ b/src/main/java/com/beanit/iec61850bean/BdaTimestamp.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.UtcTime; import java.util.Calendar; import java.util.Date; diff --git a/src/main/java/com/beanit/openiec61850/BdaTriggerConditions.java b/src/main/java/com/beanit/iec61850bean/BdaTriggerConditions.java similarity index 97% rename from src/main/java/com/beanit/openiec61850/BdaTriggerConditions.java rename to src/main/java/com/beanit/iec61850bean/BdaTriggerConditions.java index 4abc903..48e0b8d 100644 --- a/src/main/java/com/beanit/openiec61850/BdaTriggerConditions.java +++ b/src/main/java/com/beanit/iec61850bean/BdaTriggerConditions.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; public final class BdaTriggerConditions extends BdaBitString { diff --git a/src/main/java/com/beanit/openiec61850/BdaType.java b/src/main/java/com/beanit/iec61850bean/BdaType.java similarity index 93% rename from src/main/java/com/beanit/openiec61850/BdaType.java rename to src/main/java/com/beanit/iec61850bean/BdaType.java index eb9b71a..4e7e2fe 100644 --- a/src/main/java/com/beanit/openiec61850/BdaType.java +++ b/src/main/java/com/beanit/iec61850bean/BdaType.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; /** * This Enumeration includes all possible Types for IEC 61850 leave nodes ( {@link diff --git a/src/main/java/com/beanit/openiec61850/BdaUnicodeString.java b/src/main/java/com/beanit/iec61850bean/BdaUnicodeString.java similarity index 90% rename from src/main/java/com/beanit/openiec61850/BdaUnicodeString.java rename to src/main/java/com/beanit/iec61850bean/BdaUnicodeString.java index 4d638f1..e43a492 100644 --- a/src/main/java/com/beanit/openiec61850/BdaUnicodeString.java +++ b/src/main/java/com/beanit/iec61850bean/BdaUnicodeString.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.mms.asn1.Data; -import com.beanit.openiec61850.internal.mms.asn1.Integer32; -import com.beanit.openiec61850.internal.mms.asn1.MMSString; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.Integer32; +import com.beanit.iec61850bean.internal.mms.asn1.MMSString; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; public final class BdaUnicodeString extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/BdaVisibleString.java b/src/main/java/com/beanit/iec61850bean/BdaVisibleString.java similarity index 92% rename from src/main/java/com/beanit/openiec61850/BdaVisibleString.java rename to src/main/java/com/beanit/iec61850bean/BdaVisibleString.java index c58fb74..67ff496 100644 --- a/src/main/java/com/beanit/openiec61850/BdaVisibleString.java +++ b/src/main/java/com/beanit/iec61850bean/BdaVisibleString.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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 com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.Integer32; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; public final class BdaVisibleString extends BasicDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/Brcb.java b/src/main/java/com/beanit/iec61850bean/Brcb.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/Brcb.java rename to src/main/java/com/beanit/iec61850bean/Brcb.java index 0edd763..14d51f8 100644 --- a/src/main/java/com/beanit/openiec61850/Brcb.java +++ b/src/main/java/com/beanit/iec61850bean/Brcb.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import java.util.ArrayList; import java.util.List; diff --git a/src/main/java/com/beanit/openiec61850/ClientAssociation.java b/src/main/java/com/beanit/iec61850bean/ClientAssociation.java similarity index 96% rename from src/main/java/com/beanit/openiec61850/ClientAssociation.java rename to src/main/java/com/beanit/iec61850bean/ClientAssociation.java index 6781087..6e1865e 100644 --- a/src/main/java/com/beanit/openiec61850/ClientAssociation.java +++ b/src/main/java/com/beanit/iec61850bean/ClientAssociation.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,65 +11,65 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; import com.beanit.asn1bean.ber.types.BerInteger; import com.beanit.asn1bean.ber.types.BerNull; import com.beanit.asn1bean.ber.types.string.BerGraphicString; import com.beanit.asn1bean.ber.types.string.BerVisibleString; +import com.beanit.iec61850bean.internal.BerBoolean; +import com.beanit.iec61850bean.internal.mms.asn1.AccessResult; +import com.beanit.iec61850bean.internal.mms.asn1.ConfirmedRequestPDU; +import com.beanit.iec61850bean.internal.mms.asn1.ConfirmedResponsePDU; +import com.beanit.iec61850bean.internal.mms.asn1.ConfirmedServiceRequest; +import com.beanit.iec61850bean.internal.mms.asn1.ConfirmedServiceResponse; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.DefineNamedVariableListRequest; +import com.beanit.iec61850bean.internal.mms.asn1.DeleteNamedVariableListRequest; +import com.beanit.iec61850bean.internal.mms.asn1.DeleteNamedVariableListRequest.ListOfVariableListName; +import com.beanit.iec61850bean.internal.mms.asn1.DeleteNamedVariableListResponse; +import com.beanit.iec61850bean.internal.mms.asn1.DirectoryEntry; +import com.beanit.iec61850bean.internal.mms.asn1.FileCloseRequest; +import com.beanit.iec61850bean.internal.mms.asn1.FileDeleteRequest; +import com.beanit.iec61850bean.internal.mms.asn1.FileDirectoryRequest; +import com.beanit.iec61850bean.internal.mms.asn1.FileDirectoryResponse; +import com.beanit.iec61850bean.internal.mms.asn1.FileName; +import com.beanit.iec61850bean.internal.mms.asn1.FileOpenRequest; +import com.beanit.iec61850bean.internal.mms.asn1.FileReadRequest; +import com.beanit.iec61850bean.internal.mms.asn1.GetNameListRequest; +import com.beanit.iec61850bean.internal.mms.asn1.GetNameListRequest.ObjectScope; +import com.beanit.iec61850bean.internal.mms.asn1.GetNameListResponse; +import com.beanit.iec61850bean.internal.mms.asn1.GetNamedVariableListAttributesRequest; +import com.beanit.iec61850bean.internal.mms.asn1.GetNamedVariableListAttributesResponse; +import com.beanit.iec61850bean.internal.mms.asn1.GetVariableAccessAttributesRequest; +import com.beanit.iec61850bean.internal.mms.asn1.Identifier; +import com.beanit.iec61850bean.internal.mms.asn1.InitiateRequestPDU; +import com.beanit.iec61850bean.internal.mms.asn1.InitiateResponsePDU; +import com.beanit.iec61850bean.internal.mms.asn1.Integer16; +import com.beanit.iec61850bean.internal.mms.asn1.Integer32; +import com.beanit.iec61850bean.internal.mms.asn1.Integer8; +import com.beanit.iec61850bean.internal.mms.asn1.MMSpdu; +import com.beanit.iec61850bean.internal.mms.asn1.ObjectClass; +import com.beanit.iec61850bean.internal.mms.asn1.ObjectName; +import com.beanit.iec61850bean.internal.mms.asn1.ParameterSupportOptions; +import com.beanit.iec61850bean.internal.mms.asn1.ReadRequest; +import com.beanit.iec61850bean.internal.mms.asn1.ReadResponse; +import com.beanit.iec61850bean.internal.mms.asn1.RejectPDU.RejectReason; +import com.beanit.iec61850bean.internal.mms.asn1.ServiceError.ErrorClass; +import com.beanit.iec61850bean.internal.mms.asn1.ServiceSupportOptions; +import com.beanit.iec61850bean.internal.mms.asn1.UnconfirmedPDU; +import com.beanit.iec61850bean.internal.mms.asn1.UnconfirmedService; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned32; +import com.beanit.iec61850bean.internal.mms.asn1.VariableAccessSpecification; +import com.beanit.iec61850bean.internal.mms.asn1.VariableDefs; +import com.beanit.iec61850bean.internal.mms.asn1.WriteRequest; +import com.beanit.iec61850bean.internal.mms.asn1.WriteRequest.ListOfData; +import com.beanit.iec61850bean.internal.mms.asn1.WriteResponse; import com.beanit.josistack.AcseAssociation; import com.beanit.josistack.ByteBufferInputStream; import com.beanit.josistack.ClientAcseSap; import com.beanit.josistack.DecodingException; -import com.beanit.openiec61850.internal.BerBoolean; -import com.beanit.openiec61850.internal.mms.asn1.AccessResult; -import com.beanit.openiec61850.internal.mms.asn1.ConfirmedRequestPDU; -import com.beanit.openiec61850.internal.mms.asn1.ConfirmedResponsePDU; -import com.beanit.openiec61850.internal.mms.asn1.ConfirmedServiceRequest; -import com.beanit.openiec61850.internal.mms.asn1.ConfirmedServiceResponse; -import com.beanit.openiec61850.internal.mms.asn1.Data; -import com.beanit.openiec61850.internal.mms.asn1.DefineNamedVariableListRequest; -import com.beanit.openiec61850.internal.mms.asn1.DeleteNamedVariableListRequest; -import com.beanit.openiec61850.internal.mms.asn1.DeleteNamedVariableListRequest.ListOfVariableListName; -import com.beanit.openiec61850.internal.mms.asn1.DeleteNamedVariableListResponse; -import com.beanit.openiec61850.internal.mms.asn1.DirectoryEntry; -import com.beanit.openiec61850.internal.mms.asn1.FileCloseRequest; -import com.beanit.openiec61850.internal.mms.asn1.FileDeleteRequest; -import com.beanit.openiec61850.internal.mms.asn1.FileDirectoryRequest; -import com.beanit.openiec61850.internal.mms.asn1.FileDirectoryResponse; -import com.beanit.openiec61850.internal.mms.asn1.FileName; -import com.beanit.openiec61850.internal.mms.asn1.FileOpenRequest; -import com.beanit.openiec61850.internal.mms.asn1.FileReadRequest; -import com.beanit.openiec61850.internal.mms.asn1.GetNameListRequest; -import com.beanit.openiec61850.internal.mms.asn1.GetNameListRequest.ObjectScope; -import com.beanit.openiec61850.internal.mms.asn1.GetNameListResponse; -import com.beanit.openiec61850.internal.mms.asn1.GetNamedVariableListAttributesRequest; -import com.beanit.openiec61850.internal.mms.asn1.GetNamedVariableListAttributesResponse; -import com.beanit.openiec61850.internal.mms.asn1.GetVariableAccessAttributesRequest; -import com.beanit.openiec61850.internal.mms.asn1.Identifier; -import com.beanit.openiec61850.internal.mms.asn1.InitiateRequestPDU; -import com.beanit.openiec61850.internal.mms.asn1.InitiateResponsePDU; -import com.beanit.openiec61850.internal.mms.asn1.Integer16; -import com.beanit.openiec61850.internal.mms.asn1.Integer32; -import com.beanit.openiec61850.internal.mms.asn1.Integer8; -import com.beanit.openiec61850.internal.mms.asn1.MMSpdu; -import com.beanit.openiec61850.internal.mms.asn1.ObjectClass; -import com.beanit.openiec61850.internal.mms.asn1.ObjectName; -import com.beanit.openiec61850.internal.mms.asn1.ParameterSupportOptions; -import com.beanit.openiec61850.internal.mms.asn1.ReadRequest; -import com.beanit.openiec61850.internal.mms.asn1.ReadResponse; -import com.beanit.openiec61850.internal.mms.asn1.RejectPDU.RejectReason; -import com.beanit.openiec61850.internal.mms.asn1.ServiceError.ErrorClass; -import com.beanit.openiec61850.internal.mms.asn1.ServiceSupportOptions; -import com.beanit.openiec61850.internal.mms.asn1.UnconfirmedPDU; -import com.beanit.openiec61850.internal.mms.asn1.UnconfirmedService; -import com.beanit.openiec61850.internal.mms.asn1.Unsigned32; -import com.beanit.openiec61850.internal.mms.asn1.VariableAccessSpecification; -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; diff --git a/src/main/java/com/beanit/openiec61850/ClientEventListener.java b/src/main/java/com/beanit/iec61850bean/ClientEventListener.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/ClientEventListener.java rename to src/main/java/com/beanit/iec61850bean/ClientEventListener.java index 02cd547..4507aaf 100644 --- a/src/main/java/com/beanit/openiec61850/ClientEventListener.java +++ b/src/main/java/com/beanit/iec61850bean/ClientEventListener.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import java.io.IOException; diff --git a/src/main/java/com/beanit/openiec61850/ClientSap.java b/src/main/java/com/beanit/iec61850bean/ClientSap.java similarity index 99% rename from src/main/java/com/beanit/openiec61850/ClientSap.java rename to src/main/java/com/beanit/iec61850bean/ClientSap.java index 9e7eaf4..0ca8c45 100644 --- a/src/main/java/com/beanit/openiec61850/ClientSap.java +++ b/src/main/java/com/beanit/iec61850bean/ClientSap.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.josistack.ClientAcseSap; import java.io.IOException; diff --git a/src/main/java/com/beanit/openiec61850/ConstructedDataAttribute.java b/src/main/java/com/beanit/iec61850bean/ConstructedDataAttribute.java similarity index 93% rename from src/main/java/com/beanit/openiec61850/ConstructedDataAttribute.java rename to src/main/java/com/beanit/iec61850bean/ConstructedDataAttribute.java index 5f068e2..12c8810 100644 --- a/src/main/java/com/beanit/openiec61850/ConstructedDataAttribute.java +++ b/src/main/java/com/beanit/iec61850bean/ConstructedDataAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.mms.asn1.Data; -import com.beanit.openiec61850.internal.mms.asn1.Data.Structure; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.Data.Structure; import java.util.ArrayList; import java.util.Iterator; import java.util.LinkedHashMap; diff --git a/src/main/java/com/beanit/openiec61850/DataDefinitionResParser.java b/src/main/java/com/beanit/iec61850bean/DataDefinitionResParser.java similarity index 96% rename from src/main/java/com/beanit/openiec61850/DataDefinitionResParser.java rename to src/main/java/com/beanit/iec61850bean/DataDefinitionResParser.java index 64de805..90c0931 100644 --- a/src/main/java/com/beanit/openiec61850/DataDefinitionResParser.java +++ b/src/main/java/com/beanit/iec61850bean/DataDefinitionResParser.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,13 +11,13 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.mms.asn1.ConfirmedServiceResponse; -import com.beanit.openiec61850.internal.mms.asn1.GetVariableAccessAttributesResponse; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription.Structure.Components; -import com.beanit.openiec61850.internal.mms.asn1.TypeSpecification; +import com.beanit.iec61850bean.internal.mms.asn1.ConfirmedServiceResponse; +import com.beanit.iec61850bean.internal.mms.asn1.GetVariableAccessAttributesResponse; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription.Structure.Components; +import com.beanit.iec61850bean.internal.mms.asn1.TypeSpecification; import java.util.ArrayList; import java.util.Collection; import java.util.LinkedList; diff --git a/src/main/java/com/beanit/openiec61850/DataSet.java b/src/main/java/com/beanit/iec61850bean/DataSet.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/DataSet.java rename to src/main/java/com/beanit/iec61850bean/DataSet.java index f3d00dc..4b23e1f 100644 --- a/src/main/java/com/beanit/openiec61850/DataSet.java +++ b/src/main/java/com/beanit/iec61850bean/DataSet.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.mms.asn1.Identifier; -import com.beanit.openiec61850.internal.mms.asn1.ObjectName; +import com.beanit.iec61850bean.internal.mms.asn1.Identifier; +import com.beanit.iec61850bean.internal.mms.asn1.ObjectName; import java.util.ArrayList; import java.util.EnumMap; import java.util.Iterator; diff --git a/src/main/java/com/beanit/openiec61850/Fc.java b/src/main/java/com/beanit/iec61850bean/Fc.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/Fc.java rename to src/main/java/com/beanit/iec61850bean/Fc.java index af3707f..a8b8052 100644 --- a/src/main/java/com/beanit/openiec61850/Fc.java +++ b/src/main/java/com/beanit/iec61850bean/Fc.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; public enum Fc { diff --git a/src/main/java/com/beanit/openiec61850/FcDataObject.java b/src/main/java/com/beanit/iec61850bean/FcDataObject.java similarity index 96% rename from src/main/java/com/beanit/openiec61850/FcDataObject.java rename to src/main/java/com/beanit/iec61850bean/FcDataObject.java index fcb8fc3..8b0cf5a 100644 --- a/src/main/java/com/beanit/openiec61850/FcDataObject.java +++ b/src/main/java/com/beanit/iec61850bean/FcDataObject.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.Data; import java.util.ArrayList; import java.util.Iterator; import java.util.LinkedHashMap; diff --git a/src/main/java/com/beanit/openiec61850/FcModelNode.java b/src/main/java/com/beanit/iec61850bean/FcModelNode.java similarity index 91% rename from src/main/java/com/beanit/openiec61850/FcModelNode.java rename to src/main/java/com/beanit/iec61850bean/FcModelNode.java index 40e65a6..6a2d523 100644 --- a/src/main/java/com/beanit/openiec61850/FcModelNode.java +++ b/src/main/java/com/beanit/iec61850bean/FcModelNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,18 +11,18 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; - -import com.beanit.openiec61850.internal.mms.asn1.AlternateAccess; -import com.beanit.openiec61850.internal.mms.asn1.AlternateAccessSelection; -import com.beanit.openiec61850.internal.mms.asn1.AlternateAccessSelection.SelectAccess; -import com.beanit.openiec61850.internal.mms.asn1.AlternateAccessSelection.SelectAccess.Component; -import com.beanit.openiec61850.internal.mms.asn1.BasicIdentifier; -import com.beanit.openiec61850.internal.mms.asn1.Identifier; -import com.beanit.openiec61850.internal.mms.asn1.ObjectName; -import com.beanit.openiec61850.internal.mms.asn1.Unsigned32; -import com.beanit.openiec61850.internal.mms.asn1.VariableDefs; -import com.beanit.openiec61850.internal.mms.asn1.VariableSpecification; +package com.beanit.iec61850bean; + +import com.beanit.iec61850bean.internal.mms.asn1.AlternateAccess; +import com.beanit.iec61850bean.internal.mms.asn1.AlternateAccessSelection; +import com.beanit.iec61850bean.internal.mms.asn1.AlternateAccessSelection.SelectAccess; +import com.beanit.iec61850bean.internal.mms.asn1.AlternateAccessSelection.SelectAccess.Component; +import com.beanit.iec61850bean.internal.mms.asn1.BasicIdentifier; +import com.beanit.iec61850bean.internal.mms.asn1.Identifier; +import com.beanit.iec61850bean.internal.mms.asn1.ObjectName; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned32; +import com.beanit.iec61850bean.internal.mms.asn1.VariableDefs; +import com.beanit.iec61850bean.internal.mms.asn1.VariableSpecification; import java.util.List; import java.util.Timer; import java.util.TimerTask; diff --git a/src/main/java/com/beanit/openiec61850/FileInformation.java b/src/main/java/com/beanit/iec61850bean/FileInformation.java similarity index 94% rename from src/main/java/com/beanit/openiec61850/FileInformation.java rename to src/main/java/com/beanit/iec61850bean/FileInformation.java index a7811c9..750abb0 100644 --- a/src/main/java/com/beanit/openiec61850/FileInformation.java +++ b/src/main/java/com/beanit/iec61850bean/FileInformation.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import java.util.Calendar; diff --git a/src/main/java/com/beanit/openiec61850/GetFileListener.java b/src/main/java/com/beanit/iec61850bean/GetFileListener.java similarity index 92% rename from src/main/java/com/beanit/openiec61850/GetFileListener.java rename to src/main/java/com/beanit/iec61850bean/GetFileListener.java index 728032b..426febe 100644 --- a/src/main/java/com/beanit/openiec61850/GetFileListener.java +++ b/src/main/java/com/beanit/iec61850bean/GetFileListener.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; /** Callback handler for GetFile service */ public interface GetFileListener { diff --git a/src/main/java/com/beanit/openiec61850/LogicalDevice.java b/src/main/java/com/beanit/iec61850bean/LogicalDevice.java similarity index 94% rename from src/main/java/com/beanit/openiec61850/LogicalDevice.java rename to src/main/java/com/beanit/iec61850bean/LogicalDevice.java index b5b4244..c67bfe6 100644 --- a/src/main/java/com/beanit/openiec61850/LogicalDevice.java +++ b/src/main/java/com/beanit/iec61850bean/LogicalDevice.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import java.util.ArrayList; import java.util.LinkedHashMap; diff --git a/src/main/java/com/beanit/openiec61850/LogicalNode.java b/src/main/java/com/beanit/iec61850bean/LogicalNode.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/LogicalNode.java rename to src/main/java/com/beanit/iec61850bean/LogicalNode.java index e833fd5..c5f9e2a 100644 --- a/src/main/java/com/beanit/openiec61850/LogicalNode.java +++ b/src/main/java/com/beanit/iec61850bean/LogicalNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import java.util.ArrayList; import java.util.Collection; diff --git a/src/main/java/com/beanit/openiec61850/ModelNode.java b/src/main/java/com/beanit/iec61850bean/ModelNode.java similarity index 92% rename from src/main/java/com/beanit/openiec61850/ModelNode.java rename to src/main/java/com/beanit/iec61850bean/ModelNode.java index c0dae8d..2499c7d 100644 --- a/src/main/java/com/beanit/openiec61850/ModelNode.java +++ b/src/main/java/com/beanit/iec61850bean/ModelNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,14 +11,14 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; - -import com.beanit.openiec61850.internal.mms.asn1.Data; -import com.beanit.openiec61850.internal.mms.asn1.Identifier; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription.Structure; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription.Structure.Components; -import com.beanit.openiec61850.internal.mms.asn1.TypeSpecification; +package com.beanit.iec61850bean; + +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.Identifier; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription.Structure; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription.Structure.Components; +import com.beanit.iec61850bean.internal.mms.asn1.TypeSpecification; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; diff --git a/src/main/java/com/beanit/openiec61850/ObjectReference.java b/src/main/java/com/beanit/iec61850bean/ObjectReference.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/ObjectReference.java rename to src/main/java/com/beanit/iec61850bean/ObjectReference.java index a721576..7069301 100644 --- a/src/main/java/com/beanit/openiec61850/ObjectReference.java +++ b/src/main/java/com/beanit/iec61850bean/ObjectReference.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import java.util.Iterator; import java.util.LinkedList; diff --git a/src/main/java/com/beanit/openiec61850/Rcb.java b/src/main/java/com/beanit/iec61850bean/Rcb.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/Rcb.java rename to src/main/java/com/beanit/iec61850bean/Rcb.java index 839e939..11c50d8 100644 --- a/src/main/java/com/beanit/openiec61850/Rcb.java +++ b/src/main/java/com/beanit/iec61850bean/Rcb.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import java.util.List; diff --git a/src/main/java/com/beanit/openiec61850/Report.java b/src/main/java/com/beanit/iec61850bean/Report.java similarity index 97% rename from src/main/java/com/beanit/openiec61850/Report.java rename to src/main/java/com/beanit/iec61850bean/Report.java index aaa33e3..80f1c42 100644 --- a/src/main/java/com/beanit/openiec61850/Report.java +++ b/src/main/java/com/beanit/iec61850bean/Report.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.HexString; +import com.beanit.iec61850bean.internal.HexString; import java.util.List; public class Report { diff --git a/src/main/java/com/beanit/openiec61850/ReportEntryData.java b/src/main/java/com/beanit/iec61850bean/ReportEntryData.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/ReportEntryData.java rename to src/main/java/com/beanit/iec61850bean/ReportEntryData.java index b541078..a2678d1 100644 --- a/src/main/java/com/beanit/openiec61850/ReportEntryData.java +++ b/src/main/java/com/beanit/iec61850bean/ReportEntryData.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; public class ReportEntryData { diff --git a/src/main/java/com/beanit/openiec61850/SclParseException.java b/src/main/java/com/beanit/iec61850bean/SclParseException.java similarity index 91% rename from src/main/java/com/beanit/openiec61850/SclParseException.java rename to src/main/java/com/beanit/iec61850bean/SclParseException.java index e295775..656d4c1 100644 --- a/src/main/java/com/beanit/openiec61850/SclParseException.java +++ b/src/main/java/com/beanit/iec61850bean/SclParseException.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; public final class SclParseException extends Exception { diff --git a/src/main/java/com/beanit/openiec61850/SclParser.java b/src/main/java/com/beanit/iec61850bean/SclParser.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/SclParser.java rename to src/main/java/com/beanit/iec61850bean/SclParser.java index ca763cd..8b3ff7a 100644 --- a/src/main/java/com/beanit/openiec61850/SclParser.java +++ b/src/main/java/com/beanit/iec61850bean/SclParser.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,20 +11,20 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; - -import com.beanit.openiec61850.internal.scl.AbstractDataAttribute; -import com.beanit.openiec61850.internal.scl.Bda; -import com.beanit.openiec61850.internal.scl.Da; -import com.beanit.openiec61850.internal.scl.DaType; -import com.beanit.openiec61850.internal.scl.Do; -import com.beanit.openiec61850.internal.scl.DoType; -import com.beanit.openiec61850.internal.scl.EnumType; -import com.beanit.openiec61850.internal.scl.EnumVal; -import com.beanit.openiec61850.internal.scl.LnSubDef; -import com.beanit.openiec61850.internal.scl.LnType; -import com.beanit.openiec61850.internal.scl.Sdo; -import com.beanit.openiec61850.internal.scl.TypeDefinitions; +package com.beanit.iec61850bean; + +import com.beanit.iec61850bean.internal.scl.AbstractDataAttribute; +import com.beanit.iec61850bean.internal.scl.Bda; +import com.beanit.iec61850bean.internal.scl.Da; +import com.beanit.iec61850bean.internal.scl.DaType; +import com.beanit.iec61850bean.internal.scl.Do; +import com.beanit.iec61850bean.internal.scl.DoType; +import com.beanit.iec61850bean.internal.scl.EnumType; +import com.beanit.iec61850bean.internal.scl.EnumVal; +import com.beanit.iec61850bean.internal.scl.LnSubDef; +import com.beanit.iec61850bean.internal.scl.LnType; +import com.beanit.iec61850bean.internal.scl.Sdo; +import com.beanit.iec61850bean.internal.scl.TypeDefinitions; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.InputStream; diff --git a/src/main/java/com/beanit/openiec61850/ServerAssociation.java b/src/main/java/com/beanit/iec61850bean/ServerAssociation.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/ServerAssociation.java rename to src/main/java/com/beanit/iec61850bean/ServerAssociation.java index a24d276..ffde1af 100644 --- a/src/main/java/com/beanit/openiec61850/ServerAssociation.java +++ b/src/main/java/com/beanit/iec61850bean/ServerAssociation.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,59 +11,59 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.ber.ReverseByteArrayOutputStream; import com.beanit.asn1bean.ber.types.BerInteger; import com.beanit.asn1bean.ber.types.BerNull; import com.beanit.asn1bean.ber.types.string.BerVisibleString; +import com.beanit.iec61850bean.internal.BerBoolean; +import com.beanit.iec61850bean.internal.NamedThreadFactory; +import com.beanit.iec61850bean.internal.mms.asn1.AccessResult; +import com.beanit.iec61850bean.internal.mms.asn1.ConfirmedErrorPDU; +import com.beanit.iec61850bean.internal.mms.asn1.ConfirmedRequestPDU; +import com.beanit.iec61850bean.internal.mms.asn1.ConfirmedResponsePDU; +import com.beanit.iec61850bean.internal.mms.asn1.ConfirmedServiceRequest; +import com.beanit.iec61850bean.internal.mms.asn1.ConfirmedServiceResponse; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.DataAccessError; +import com.beanit.iec61850bean.internal.mms.asn1.DefineNamedVariableListRequest; +import com.beanit.iec61850bean.internal.mms.asn1.DefineNamedVariableListResponse; +import com.beanit.iec61850bean.internal.mms.asn1.DeleteNamedVariableListRequest; +import com.beanit.iec61850bean.internal.mms.asn1.DeleteNamedVariableListResponse; +import com.beanit.iec61850bean.internal.mms.asn1.GetNameListRequest; +import com.beanit.iec61850bean.internal.mms.asn1.GetNameListResponse; +import com.beanit.iec61850bean.internal.mms.asn1.GetNameListResponse.ListOfIdentifier; +import com.beanit.iec61850bean.internal.mms.asn1.GetNamedVariableListAttributesResponse; +import com.beanit.iec61850bean.internal.mms.asn1.GetVariableAccessAttributesRequest; +import com.beanit.iec61850bean.internal.mms.asn1.GetVariableAccessAttributesResponse; +import com.beanit.iec61850bean.internal.mms.asn1.Identifier; +import com.beanit.iec61850bean.internal.mms.asn1.InitiateRequestPDU; +import com.beanit.iec61850bean.internal.mms.asn1.InitiateResponsePDU; +import com.beanit.iec61850bean.internal.mms.asn1.Integer16; +import com.beanit.iec61850bean.internal.mms.asn1.Integer32; +import com.beanit.iec61850bean.internal.mms.asn1.Integer8; +import com.beanit.iec61850bean.internal.mms.asn1.MMSpdu; +import com.beanit.iec61850bean.internal.mms.asn1.ObjectName; +import com.beanit.iec61850bean.internal.mms.asn1.ObjectName.DomainSpecific; +import com.beanit.iec61850bean.internal.mms.asn1.ParameterSupportOptions; +import com.beanit.iec61850bean.internal.mms.asn1.ReadRequest; +import com.beanit.iec61850bean.internal.mms.asn1.ReadResponse; +import com.beanit.iec61850bean.internal.mms.asn1.ReadResponse.ListOfAccessResult; +import com.beanit.iec61850bean.internal.mms.asn1.ServiceError.ErrorClass; +import com.beanit.iec61850bean.internal.mms.asn1.ServiceSupportOptions; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription.Structure; +import com.beanit.iec61850bean.internal.mms.asn1.TypeDescription.Structure.Components; +import com.beanit.iec61850bean.internal.mms.asn1.TypeSpecification; +import com.beanit.iec61850bean.internal.mms.asn1.Unsigned32; +import com.beanit.iec61850bean.internal.mms.asn1.VariableAccessSpecification; +import com.beanit.iec61850bean.internal.mms.asn1.VariableDefs; +import com.beanit.iec61850bean.internal.mms.asn1.WriteRequest; +import com.beanit.iec61850bean.internal.mms.asn1.WriteResponse; import com.beanit.josistack.AcseAssociation; import com.beanit.josistack.ByteBufferInputStream; import com.beanit.josistack.DecodingException; -import com.beanit.openiec61850.internal.BerBoolean; -import com.beanit.openiec61850.internal.NamedThreadFactory; -import com.beanit.openiec61850.internal.mms.asn1.AccessResult; -import com.beanit.openiec61850.internal.mms.asn1.ConfirmedErrorPDU; -import com.beanit.openiec61850.internal.mms.asn1.ConfirmedRequestPDU; -import com.beanit.openiec61850.internal.mms.asn1.ConfirmedResponsePDU; -import com.beanit.openiec61850.internal.mms.asn1.ConfirmedServiceRequest; -import com.beanit.openiec61850.internal.mms.asn1.ConfirmedServiceResponse; -import com.beanit.openiec61850.internal.mms.asn1.Data; -import com.beanit.openiec61850.internal.mms.asn1.DataAccessError; -import com.beanit.openiec61850.internal.mms.asn1.DefineNamedVariableListRequest; -import com.beanit.openiec61850.internal.mms.asn1.DefineNamedVariableListResponse; -import com.beanit.openiec61850.internal.mms.asn1.DeleteNamedVariableListRequest; -import com.beanit.openiec61850.internal.mms.asn1.DeleteNamedVariableListResponse; -import com.beanit.openiec61850.internal.mms.asn1.GetNameListRequest; -import com.beanit.openiec61850.internal.mms.asn1.GetNameListResponse; -import com.beanit.openiec61850.internal.mms.asn1.GetNameListResponse.ListOfIdentifier; -import com.beanit.openiec61850.internal.mms.asn1.GetNamedVariableListAttributesResponse; -import com.beanit.openiec61850.internal.mms.asn1.GetVariableAccessAttributesRequest; -import com.beanit.openiec61850.internal.mms.asn1.GetVariableAccessAttributesResponse; -import com.beanit.openiec61850.internal.mms.asn1.Identifier; -import com.beanit.openiec61850.internal.mms.asn1.InitiateRequestPDU; -import com.beanit.openiec61850.internal.mms.asn1.InitiateResponsePDU; -import com.beanit.openiec61850.internal.mms.asn1.Integer16; -import com.beanit.openiec61850.internal.mms.asn1.Integer32; -import com.beanit.openiec61850.internal.mms.asn1.Integer8; -import com.beanit.openiec61850.internal.mms.asn1.MMSpdu; -import com.beanit.openiec61850.internal.mms.asn1.ObjectName; -import com.beanit.openiec61850.internal.mms.asn1.ObjectName.DomainSpecific; -import com.beanit.openiec61850.internal.mms.asn1.ParameterSupportOptions; -import com.beanit.openiec61850.internal.mms.asn1.ReadRequest; -import com.beanit.openiec61850.internal.mms.asn1.ReadResponse; -import com.beanit.openiec61850.internal.mms.asn1.ReadResponse.ListOfAccessResult; -import com.beanit.openiec61850.internal.mms.asn1.ServiceError.ErrorClass; -import com.beanit.openiec61850.internal.mms.asn1.ServiceSupportOptions; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription.Structure; -import com.beanit.openiec61850.internal.mms.asn1.TypeDescription.Structure.Components; -import com.beanit.openiec61850.internal.mms.asn1.TypeSpecification; -import com.beanit.openiec61850.internal.mms.asn1.Unsigned32; -import com.beanit.openiec61850.internal.mms.asn1.VariableAccessSpecification; -import com.beanit.openiec61850.internal.mms.asn1.VariableDefs; -import com.beanit.openiec61850.internal.mms.asn1.WriteRequest; -import com.beanit.openiec61850.internal.mms.asn1.WriteResponse; import java.io.ByteArrayInputStream; import java.io.EOFException; import java.io.IOException; @@ -115,7 +115,7 @@ final class ServerAssociation { serverModel = serverSap.serverModel; executor = Executors.newScheduledThreadPool( - 2, new NamedThreadFactory("openiec61850-server-connection")); + 2, new NamedThreadFactory("iec61850bean-server-connection")); } private static void insertMmsRef(ModelNode node, List mmsRefs, String parentRef) { @@ -494,9 +494,9 @@ final class ServerAssociation { default: errClass.setOthers(new BerInteger(e.getErrorCode())); } - com.beanit.openiec61850.internal.mms.asn1.ServiceError asn1ServiceError = null; + com.beanit.iec61850bean.internal.mms.asn1.ServiceError asn1ServiceError = null; - asn1ServiceError = new com.beanit.openiec61850.internal.mms.asn1.ServiceError(); + asn1ServiceError = new com.beanit.iec61850bean.internal.mms.asn1.ServiceError(); asn1ServiceError.setErrorClass(errClass); asn1ServiceError.setAdditionalDescription(new BerVisibleString(e.getMessage())); diff --git a/src/main/java/com/beanit/openiec61850/ServerEventListener.java b/src/main/java/com/beanit/iec61850bean/ServerEventListener.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/ServerEventListener.java rename to src/main/java/com/beanit/iec61850bean/ServerEventListener.java index bb3984a..7cc104d 100644 --- a/src/main/java/com/beanit/openiec61850/ServerEventListener.java +++ b/src/main/java/com/beanit/iec61850bean/ServerEventListener.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import java.util.List; diff --git a/src/main/java/com/beanit/openiec61850/ServerModel.java b/src/main/java/com/beanit/iec61850bean/ServerModel.java similarity index 97% rename from src/main/java/com/beanit/openiec61850/ServerModel.java rename to src/main/java/com/beanit/iec61850bean/ServerModel.java index 1e196c9..34fd3b6 100644 --- a/src/main/java/com/beanit/openiec61850/ServerModel.java +++ b/src/main/java/com/beanit/iec61850bean/ServerModel.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,12 +11,12 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; -import com.beanit.openiec61850.internal.mms.asn1.AlternateAccessSelection; -import com.beanit.openiec61850.internal.mms.asn1.ObjectName; -import com.beanit.openiec61850.internal.mms.asn1.ObjectName.DomainSpecific; -import com.beanit.openiec61850.internal.mms.asn1.VariableDefs; +import com.beanit.iec61850bean.internal.mms.asn1.AlternateAccessSelection; +import com.beanit.iec61850bean.internal.mms.asn1.ObjectName; +import com.beanit.iec61850bean.internal.mms.asn1.ObjectName.DomainSpecific; +import com.beanit.iec61850bean.internal.mms.asn1.VariableDefs; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; diff --git a/src/main/java/com/beanit/openiec61850/ServerSap.java b/src/main/java/com/beanit/iec61850bean/ServerSap.java similarity index 99% rename from src/main/java/com/beanit/openiec61850/ServerSap.java rename to src/main/java/com/beanit/iec61850bean/ServerSap.java index f911199..c125b72 100644 --- a/src/main/java/com/beanit/openiec61850/ServerSap.java +++ b/src/main/java/com/beanit/iec61850bean/ServerSap.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.josistack.AcseAssociation; import com.beanit.josistack.ServerAcseSap; diff --git a/src/main/java/com/beanit/openiec61850/ServiceError.java b/src/main/java/com/beanit/iec61850bean/ServiceError.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/ServiceError.java rename to src/main/java/com/beanit/iec61850bean/ServiceError.java index 4a8df37..16ea81a 100644 --- a/src/main/java/com/beanit/openiec61850/ServiceError.java +++ b/src/main/java/com/beanit/iec61850bean/ServiceError.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; public final class ServiceError extends Exception { diff --git a/src/main/java/com/beanit/openiec61850/ServiceSupport.java b/src/main/java/com/beanit/iec61850bean/ServiceSupport.java similarity index 92% rename from src/main/java/com/beanit/openiec61850/ServiceSupport.java rename to src/main/java/com/beanit/iec61850bean/ServiceSupport.java index b6c8075..54ef47d 100644 --- a/src/main/java/com/beanit/openiec61850/ServiceSupport.java +++ b/src/main/java/com/beanit/iec61850bean/ServiceSupport.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; public final class ServiceSupport { diff --git a/src/main/java/com/beanit/openiec61850/Urcb.java b/src/main/java/com/beanit/iec61850bean/Urcb.java similarity index 94% rename from src/main/java/com/beanit/openiec61850/Urcb.java rename to src/main/java/com/beanit/iec61850bean/Urcb.java index d0d3d16..6ad5f8a 100644 --- a/src/main/java/com/beanit/openiec61850/Urcb.java +++ b/src/main/java/com/beanit/iec61850bean/Urcb.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,18 +11,18 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850; +package com.beanit.iec61850bean; import com.beanit.asn1bean.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; -import com.beanit.openiec61850.internal.mms.asn1.InformationReport; -import com.beanit.openiec61850.internal.mms.asn1.MMSpdu; -import com.beanit.openiec61850.internal.mms.asn1.ObjectName; -import com.beanit.openiec61850.internal.mms.asn1.UnconfirmedPDU; -import com.beanit.openiec61850.internal.mms.asn1.UnconfirmedService; -import com.beanit.openiec61850.internal.mms.asn1.VariableAccessSpecification; +import com.beanit.iec61850bean.internal.mms.asn1.AccessResult; +import com.beanit.iec61850bean.internal.mms.asn1.Data; +import com.beanit.iec61850bean.internal.mms.asn1.Identifier; +import com.beanit.iec61850bean.internal.mms.asn1.InformationReport; +import com.beanit.iec61850bean.internal.mms.asn1.MMSpdu; +import com.beanit.iec61850bean.internal.mms.asn1.ObjectName; +import com.beanit.iec61850bean.internal.mms.asn1.UnconfirmedPDU; +import com.beanit.iec61850bean.internal.mms.asn1.UnconfirmedService; +import com.beanit.iec61850bean.internal.mms.asn1.VariableAccessSpecification; import java.util.ArrayList; import java.util.HashMap; import java.util.LinkedHashMap; diff --git a/src/main/java/com/beanit/openiec61850/app/ConsoleClient.java b/src/main/java/com/beanit/iec61850bean/app/ConsoleClient.java similarity index 92% rename from src/main/java/com/beanit/openiec61850/app/ConsoleClient.java rename to src/main/java/com/beanit/iec61850bean/app/ConsoleClient.java index fec4483..30249bd 100644 --- a/src/main/java/com/beanit/openiec61850/app/ConsoleClient.java +++ b/src/main/java/com/beanit/iec61850bean/app/ConsoleClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,33 +11,33 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.app; - -import com.beanit.openiec61850.BdaTriggerConditions; -import com.beanit.openiec61850.Brcb; -import com.beanit.openiec61850.ClientAssociation; -import com.beanit.openiec61850.ClientEventListener; -import com.beanit.openiec61850.ClientSap; -import com.beanit.openiec61850.DataSet; -import com.beanit.openiec61850.Fc; -import com.beanit.openiec61850.FcModelNode; -import com.beanit.openiec61850.ModelNode; -import com.beanit.openiec61850.Report; -import com.beanit.openiec61850.SclParseException; -import com.beanit.openiec61850.SclParser; -import com.beanit.openiec61850.ServerModel; -import com.beanit.openiec61850.ServiceError; -import com.beanit.openiec61850.Urcb; -import com.beanit.openiec61850.internal.cli.Action; -import com.beanit.openiec61850.internal.cli.ActionException; -import com.beanit.openiec61850.internal.cli.ActionListener; -import com.beanit.openiec61850.internal.cli.ActionProcessor; -import com.beanit.openiec61850.internal.cli.CliParameter; -import com.beanit.openiec61850.internal.cli.CliParameterBuilder; -import com.beanit.openiec61850.internal.cli.CliParseException; -import com.beanit.openiec61850.internal.cli.CliParser; -import com.beanit.openiec61850.internal.cli.IntCliParameter; -import com.beanit.openiec61850.internal.cli.StringCliParameter; +package com.beanit.iec61850bean.app; + +import com.beanit.iec61850bean.BdaTriggerConditions; +import com.beanit.iec61850bean.Brcb; +import com.beanit.iec61850bean.ClientAssociation; +import com.beanit.iec61850bean.ClientEventListener; +import com.beanit.iec61850bean.ClientSap; +import com.beanit.iec61850bean.DataSet; +import com.beanit.iec61850bean.Fc; +import com.beanit.iec61850bean.FcModelNode; +import com.beanit.iec61850bean.ModelNode; +import com.beanit.iec61850bean.Report; +import com.beanit.iec61850bean.SclParseException; +import com.beanit.iec61850bean.SclParser; +import com.beanit.iec61850bean.ServerModel; +import com.beanit.iec61850bean.ServiceError; +import com.beanit.iec61850bean.Urcb; +import com.beanit.iec61850bean.internal.cli.Action; +import com.beanit.iec61850bean.internal.cli.ActionException; +import com.beanit.iec61850bean.internal.cli.ActionListener; +import com.beanit.iec61850bean.internal.cli.ActionProcessor; +import com.beanit.iec61850bean.internal.cli.CliParameter; +import com.beanit.iec61850bean.internal.cli.CliParameterBuilder; +import com.beanit.iec61850bean.internal.cli.CliParseException; +import com.beanit.iec61850bean.internal.cli.CliParser; +import com.beanit.iec61850bean.internal.cli.IntCliParameter; +import com.beanit.iec61850bean.internal.cli.StringCliParameter; import java.io.IOException; import java.net.InetAddress; import java.net.UnknownHostException; @@ -86,7 +86,7 @@ public class ConsoleClient { CliParser cliParser = new CliParser( - "openiec61850-console-client", "A client application to access IEC 61850 MMS servers."); + "iec61850bean-console-client", "A client application to access IEC 61850 MMS servers."); cliParser.addParameters(cliParameters); try { diff --git a/src/main/java/com/beanit/openiec61850/app/ConsoleServer.java b/src/main/java/com/beanit/iec61850bean/app/ConsoleServer.java similarity index 83% rename from src/main/java/com/beanit/openiec61850/app/ConsoleServer.java rename to src/main/java/com/beanit/iec61850bean/app/ConsoleServer.java index 0365af3..59049c9 100644 --- a/src/main/java/com/beanit/openiec61850/app/ConsoleServer.java +++ b/src/main/java/com/beanit/iec61850bean/app/ConsoleServer.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,37 +11,37 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.app; - -import com.beanit.openiec61850.BasicDataAttribute; -import com.beanit.openiec61850.BdaBoolean; -import com.beanit.openiec61850.BdaFloat32; -import com.beanit.openiec61850.BdaFloat64; -import com.beanit.openiec61850.BdaInt16; -import com.beanit.openiec61850.BdaInt16U; -import com.beanit.openiec61850.BdaInt32; -import com.beanit.openiec61850.BdaInt32U; -import com.beanit.openiec61850.BdaInt64; -import com.beanit.openiec61850.BdaInt8; -import com.beanit.openiec61850.BdaInt8U; -import com.beanit.openiec61850.Fc; -import com.beanit.openiec61850.ModelNode; -import com.beanit.openiec61850.SclParseException; -import com.beanit.openiec61850.SclParser; -import com.beanit.openiec61850.ServerEventListener; -import com.beanit.openiec61850.ServerModel; -import com.beanit.openiec61850.ServerSap; -import com.beanit.openiec61850.ServiceError; -import com.beanit.openiec61850.internal.cli.Action; -import com.beanit.openiec61850.internal.cli.ActionException; -import com.beanit.openiec61850.internal.cli.ActionListener; -import com.beanit.openiec61850.internal.cli.ActionProcessor; -import com.beanit.openiec61850.internal.cli.CliParameter; -import com.beanit.openiec61850.internal.cli.CliParameterBuilder; -import com.beanit.openiec61850.internal.cli.CliParseException; -import com.beanit.openiec61850.internal.cli.CliParser; -import com.beanit.openiec61850.internal.cli.IntCliParameter; -import com.beanit.openiec61850.internal.cli.StringCliParameter; +package com.beanit.iec61850bean.app; + +import com.beanit.iec61850bean.BasicDataAttribute; +import com.beanit.iec61850bean.BdaBoolean; +import com.beanit.iec61850bean.BdaFloat32; +import com.beanit.iec61850bean.BdaFloat64; +import com.beanit.iec61850bean.BdaInt16; +import com.beanit.iec61850bean.BdaInt16U; +import com.beanit.iec61850bean.BdaInt32; +import com.beanit.iec61850bean.BdaInt32U; +import com.beanit.iec61850bean.BdaInt64; +import com.beanit.iec61850bean.BdaInt8; +import com.beanit.iec61850bean.BdaInt8U; +import com.beanit.iec61850bean.Fc; +import com.beanit.iec61850bean.ModelNode; +import com.beanit.iec61850bean.SclParseException; +import com.beanit.iec61850bean.SclParser; +import com.beanit.iec61850bean.ServerEventListener; +import com.beanit.iec61850bean.ServerModel; +import com.beanit.iec61850bean.ServerSap; +import com.beanit.iec61850bean.ServiceError; +import com.beanit.iec61850bean.internal.cli.Action; +import com.beanit.iec61850bean.internal.cli.ActionException; +import com.beanit.iec61850bean.internal.cli.ActionListener; +import com.beanit.iec61850bean.internal.cli.ActionProcessor; +import com.beanit.iec61850bean.internal.cli.CliParameter; +import com.beanit.iec61850bean.internal.cli.CliParameterBuilder; +import com.beanit.iec61850bean.internal.cli.CliParseException; +import com.beanit.iec61850bean.internal.cli.CliParser; +import com.beanit.iec61850bean.internal.cli.IntCliParameter; +import com.beanit.iec61850bean.internal.cli.StringCliParameter; import java.io.IOException; import java.util.ArrayList; import java.util.List; @@ -76,7 +76,7 @@ public class ConsoleServer { cliParameters.add(portParam); CliParser cliParser = - new CliParser("openiec61850-console-server", "An IEC 61850 MMS console server."); + new CliParser("iec61850bean-console-server", "An IEC 61850 MMS console server."); cliParser.addParameters(cliParameters); try { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/BasicDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/BasicDataBind.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/clientgui/BasicDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/BasicDataBind.java index 619b7c6..c4d77e4 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/BasicDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/BasicDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui; +package com.beanit.iec61850bean.clientgui; -import com.beanit.openiec61850.BasicDataAttribute; -import com.beanit.openiec61850.BdaType; +import com.beanit.iec61850bean.BasicDataAttribute; +import com.beanit.iec61850bean.BdaType; import javax.swing.JComponent; import javax.swing.JLabel; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/ClientGui.java b/src/main/java/com/beanit/iec61850bean/clientgui/ClientGui.java similarity index 97% rename from src/main/java/com/beanit/openiec61850/clientgui/ClientGui.java rename to src/main/java/com/beanit/iec61850bean/clientgui/ClientGui.java index 1c5f4d2..25a02e2 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/ClientGui.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/ClientGui.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,13 +11,13 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui; +package com.beanit.iec61850bean.clientgui; -import com.beanit.openiec61850.ClientAssociation; -import com.beanit.openiec61850.ClientSap; -import com.beanit.openiec61850.ServerModel; -import com.beanit.openiec61850.ServiceError; -import com.beanit.openiec61850.clientgui.util.Counter; +import com.beanit.iec61850bean.ClientAssociation; +import com.beanit.iec61850bean.ClientSap; +import com.beanit.iec61850bean.ServerModel; +import com.beanit.iec61850bean.ServiceError; +import com.beanit.iec61850bean.clientgui.util.Counter; import java.awt.Component; import java.awt.Dimension; import java.awt.GridBagConstraints; @@ -73,7 +73,7 @@ public class ClientGui extends JFrame implements ActionListener, TreeSelectionLi private DataTreeNode selectedNode; public ClientGui() { - super("OpenIEC61850 Client GUI"); + super("IEC61850bean Client GUI"); Properties lastConnection = new Properties(); diff --git a/src/main/java/com/beanit/openiec61850/clientgui/DataObjectTreeCellRenderer.java b/src/main/java/com/beanit/iec61850bean/clientgui/DataObjectTreeCellRenderer.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/clientgui/DataObjectTreeCellRenderer.java rename to src/main/java/com/beanit/iec61850bean/clientgui/DataObjectTreeCellRenderer.java index 59c97f5..808ec07 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/DataObjectTreeCellRenderer.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/DataObjectTreeCellRenderer.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui; +package com.beanit.iec61850bean.clientgui; -import com.beanit.openiec61850.BasicDataAttribute; -import com.beanit.openiec61850.FcModelNode; +import com.beanit.iec61850bean.BasicDataAttribute; +import com.beanit.iec61850bean.FcModelNode; import java.awt.Component; import javax.swing.JTree; import javax.swing.tree.DefaultTreeCellRenderer; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/DataObjectTreeNode.java b/src/main/java/com/beanit/iec61850bean/clientgui/DataObjectTreeNode.java similarity index 61% rename from src/main/java/com/beanit/openiec61850/clientgui/DataObjectTreeNode.java rename to src/main/java/com/beanit/iec61850bean/clientgui/DataObjectTreeNode.java index 5cd0bad..ec60968 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/DataObjectTreeNode.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/DataObjectTreeNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,58 +11,58 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui; +package com.beanit.iec61850bean.clientgui; -import com.beanit.openiec61850.BasicDataAttribute; -import com.beanit.openiec61850.BdaBoolean; -import com.beanit.openiec61850.BdaCheck; -import com.beanit.openiec61850.BdaDoubleBitPos; -import com.beanit.openiec61850.BdaEntryTime; -import com.beanit.openiec61850.BdaFloat32; -import com.beanit.openiec61850.BdaFloat64; -import com.beanit.openiec61850.BdaInt16; -import com.beanit.openiec61850.BdaInt16U; -import com.beanit.openiec61850.BdaInt32; -import com.beanit.openiec61850.BdaInt32U; -import com.beanit.openiec61850.BdaInt64; -import com.beanit.openiec61850.BdaInt8; -import com.beanit.openiec61850.BdaInt8U; -import com.beanit.openiec61850.BdaOctetString; -import com.beanit.openiec61850.BdaOptFlds; -import com.beanit.openiec61850.BdaQuality; -import com.beanit.openiec61850.BdaReasonForInclusion; -import com.beanit.openiec61850.BdaTapCommand; -import com.beanit.openiec61850.BdaTimestamp; -import com.beanit.openiec61850.BdaTriggerConditions; -import com.beanit.openiec61850.BdaUnicodeString; -import com.beanit.openiec61850.BdaVisibleString; -import com.beanit.openiec61850.ClientAssociation; -import com.beanit.openiec61850.Fc; -import com.beanit.openiec61850.FcModelNode; -import com.beanit.openiec61850.ModelNode; -import com.beanit.openiec61850.ServiceError; -import com.beanit.openiec61850.clientgui.databind.BooleanDataBind; -import com.beanit.openiec61850.clientgui.databind.CheckDataBind; -import com.beanit.openiec61850.clientgui.databind.DoubleBitPosDataBind; -import com.beanit.openiec61850.clientgui.databind.EntryTimeDataBind; -import com.beanit.openiec61850.clientgui.databind.Float32DataBind; -import com.beanit.openiec61850.clientgui.databind.Float64DataBind; -import com.beanit.openiec61850.clientgui.databind.Int16DataBind; -import com.beanit.openiec61850.clientgui.databind.Int16UDataBind; -import com.beanit.openiec61850.clientgui.databind.Int32DataBind; -import com.beanit.openiec61850.clientgui.databind.Int32UDataBind; -import com.beanit.openiec61850.clientgui.databind.Int64DataBind; -import com.beanit.openiec61850.clientgui.databind.Int8DataBind; -import com.beanit.openiec61850.clientgui.databind.Int8UDataBind; -import com.beanit.openiec61850.clientgui.databind.OctetStringDataBind; -import com.beanit.openiec61850.clientgui.databind.OptfldsDataBind; -import com.beanit.openiec61850.clientgui.databind.QualityDataBind; -import com.beanit.openiec61850.clientgui.databind.ReasonForInclusionDataBind; -import com.beanit.openiec61850.clientgui.databind.TapCommandDataBind; -import com.beanit.openiec61850.clientgui.databind.TimeStampDataBind; -import com.beanit.openiec61850.clientgui.databind.TriggerConditionDataBind; -import com.beanit.openiec61850.clientgui.databind.UnicodeStringDataBind; -import com.beanit.openiec61850.clientgui.databind.VisibleStringDataBind; +import com.beanit.iec61850bean.BasicDataAttribute; +import com.beanit.iec61850bean.BdaBoolean; +import com.beanit.iec61850bean.BdaCheck; +import com.beanit.iec61850bean.BdaDoubleBitPos; +import com.beanit.iec61850bean.BdaEntryTime; +import com.beanit.iec61850bean.BdaFloat32; +import com.beanit.iec61850bean.BdaFloat64; +import com.beanit.iec61850bean.BdaInt16; +import com.beanit.iec61850bean.BdaInt16U; +import com.beanit.iec61850bean.BdaInt32; +import com.beanit.iec61850bean.BdaInt32U; +import com.beanit.iec61850bean.BdaInt64; +import com.beanit.iec61850bean.BdaInt8; +import com.beanit.iec61850bean.BdaInt8U; +import com.beanit.iec61850bean.BdaOctetString; +import com.beanit.iec61850bean.BdaOptFlds; +import com.beanit.iec61850bean.BdaQuality; +import com.beanit.iec61850bean.BdaReasonForInclusion; +import com.beanit.iec61850bean.BdaTapCommand; +import com.beanit.iec61850bean.BdaTimestamp; +import com.beanit.iec61850bean.BdaTriggerConditions; +import com.beanit.iec61850bean.BdaUnicodeString; +import com.beanit.iec61850bean.BdaVisibleString; +import com.beanit.iec61850bean.ClientAssociation; +import com.beanit.iec61850bean.Fc; +import com.beanit.iec61850bean.FcModelNode; +import com.beanit.iec61850bean.ModelNode; +import com.beanit.iec61850bean.ServiceError; +import com.beanit.iec61850bean.clientgui.databind.BooleanDataBind; +import com.beanit.iec61850bean.clientgui.databind.CheckDataBind; +import com.beanit.iec61850bean.clientgui.databind.DoubleBitPosDataBind; +import com.beanit.iec61850bean.clientgui.databind.EntryTimeDataBind; +import com.beanit.iec61850bean.clientgui.databind.Float32DataBind; +import com.beanit.iec61850bean.clientgui.databind.Float64DataBind; +import com.beanit.iec61850bean.clientgui.databind.Int16DataBind; +import com.beanit.iec61850bean.clientgui.databind.Int16UDataBind; +import com.beanit.iec61850bean.clientgui.databind.Int32DataBind; +import com.beanit.iec61850bean.clientgui.databind.Int32UDataBind; +import com.beanit.iec61850bean.clientgui.databind.Int64DataBind; +import com.beanit.iec61850bean.clientgui.databind.Int8DataBind; +import com.beanit.iec61850bean.clientgui.databind.Int8UDataBind; +import com.beanit.iec61850bean.clientgui.databind.OctetStringDataBind; +import com.beanit.iec61850bean.clientgui.databind.OptfldsDataBind; +import com.beanit.iec61850bean.clientgui.databind.QualityDataBind; +import com.beanit.iec61850bean.clientgui.databind.ReasonForInclusionDataBind; +import com.beanit.iec61850bean.clientgui.databind.TapCommandDataBind; +import com.beanit.iec61850bean.clientgui.databind.TimeStampDataBind; +import com.beanit.iec61850bean.clientgui.databind.TriggerConditionDataBind; +import com.beanit.iec61850bean.clientgui.databind.UnicodeStringDataBind; +import com.beanit.iec61850bean.clientgui.databind.VisibleStringDataBind; import java.io.IOException; import javax.swing.tree.DefaultMutableTreeNode; @@ -143,21 +143,11 @@ public class DataObjectTreeNode extends DefaultMutableTreeNode implements DataTr return node; } - /* - * (non-Javadoc) - * - * @see com.beanit.openiec61850.clientgui.DataTreeNode#getData() - */ @Override public BasicDataBind getData() { return data; } - /* - * (non-Javadoc) - * - * @see com.beanit.openiec61850.clientgui.DataTreeNode#reset() - */ @Override public void reset(ClientAssociation association) throws ServiceError, IOException { if (association != null) { @@ -175,11 +165,6 @@ public class DataObjectTreeNode extends DefaultMutableTreeNode implements DataTr } } - /* - * (non-Javadoc) - * - * @see com.beanit.openiec61850.clientgui.DataTreeNode#writeValues() - */ @Override public void writeValues(ClientAssociation association) throws ServiceError, IOException { if (data != null) { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/DataSetTreeNode.java b/src/main/java/com/beanit/iec61850bean/clientgui/DataSetTreeNode.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/clientgui/DataSetTreeNode.java rename to src/main/java/com/beanit/iec61850bean/clientgui/DataSetTreeNode.java index 477fb68..bbf1a9a 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/DataSetTreeNode.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/DataSetTreeNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui; +package com.beanit.iec61850bean.clientgui; -import com.beanit.openiec61850.ClientAssociation; -import com.beanit.openiec61850.DataSet; -import com.beanit.openiec61850.ServiceError; +import com.beanit.iec61850bean.ClientAssociation; +import com.beanit.iec61850bean.DataSet; +import com.beanit.iec61850bean.ServiceError; import java.io.IOException; import javax.swing.tree.DefaultMutableTreeNode; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/DataTreeNode.java b/src/main/java/com/beanit/iec61850bean/clientgui/DataTreeNode.java similarity index 84% rename from src/main/java/com/beanit/openiec61850/clientgui/DataTreeNode.java rename to src/main/java/com/beanit/iec61850bean/clientgui/DataTreeNode.java index 82946e8..92e108c 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/DataTreeNode.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/DataTreeNode.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui; +package com.beanit.iec61850bean.clientgui; -import com.beanit.openiec61850.ClientAssociation; -import com.beanit.openiec61850.ServiceError; +import com.beanit.iec61850bean.ClientAssociation; +import com.beanit.iec61850bean.ServiceError; import java.io.IOException; import javax.swing.tree.TreeNode; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/ServerModelParser.java b/src/main/java/com/beanit/iec61850bean/clientgui/ServerModelParser.java similarity index 91% rename from src/main/java/com/beanit/openiec61850/clientgui/ServerModelParser.java rename to src/main/java/com/beanit/iec61850bean/clientgui/ServerModelParser.java index 94c07aa..2f493a2 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/ServerModelParser.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/ServerModelParser.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,15 +11,15 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui; +package com.beanit.iec61850bean.clientgui; -import com.beanit.openiec61850.DataSet; -import com.beanit.openiec61850.Fc; -import com.beanit.openiec61850.FcModelNode; -import com.beanit.openiec61850.LogicalDevice; -import com.beanit.openiec61850.LogicalNode; -import com.beanit.openiec61850.ModelNode; -import com.beanit.openiec61850.ServerModel; +import com.beanit.iec61850bean.DataSet; +import com.beanit.iec61850bean.Fc; +import com.beanit.iec61850bean.FcModelNode; +import com.beanit.iec61850bean.LogicalDevice; +import com.beanit.iec61850bean.LogicalNode; +import com.beanit.iec61850bean.ModelNode; +import com.beanit.iec61850bean.ServerModel; import java.util.Collection; import java.util.HashMap; import java.util.HashSet; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/SettingsFrame.java b/src/main/java/com/beanit/iec61850bean/clientgui/SettingsFrame.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/clientgui/SettingsFrame.java rename to src/main/java/com/beanit/iec61850bean/clientgui/SettingsFrame.java index 196dbb9..52640bb 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/SettingsFrame.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/SettingsFrame.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui; +package com.beanit.iec61850bean.clientgui; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/BooleanDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/BooleanDataBind.java similarity index 83% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/BooleanDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/BooleanDataBind.java index 2945ad5..b08b920 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/BooleanDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/BooleanDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaBoolean; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaBoolean; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import javax.swing.JCheckBox; import javax.swing.JComponent; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/CheckDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/CheckDataBind.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/CheckDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/CheckDataBind.java index d75a206..687b6af 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/CheckDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/CheckDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaCheck; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaCheck; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import java.awt.Component; import javax.swing.BoxLayout; import javax.swing.JCheckBox; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/DoubleBitPosDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/DoubleBitPosDataBind.java similarity index 84% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/DoubleBitPosDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/DoubleBitPosDataBind.java index 010fafe..16da758 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/DoubleBitPosDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/DoubleBitPosDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaDoubleBitPos; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaDoubleBitPos; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import javax.swing.JComboBox; import javax.swing.JComponent; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/EntryTimeDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/EntryTimeDataBind.java similarity index 84% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/EntryTimeDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/EntryTimeDataBind.java index 81d6d66..40efefc 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/EntryTimeDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/EntryTimeDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaEntryTime; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaEntryTime; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import javax.swing.JComponent; import javax.swing.JLabel; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/Float32DataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Float32DataBind.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/Float32DataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/Float32DataBind.java index b0bf9f8..cc1785c 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/Float32DataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Float32DataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaFloat32; -import com.beanit.openiec61850.BdaType; +import com.beanit.iec61850bean.BdaFloat32; +import com.beanit.iec61850bean.BdaType; public class Float32DataBind extends TextFieldDataBind { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/Float64DataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Float64DataBind.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/Float64DataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/Float64DataBind.java index b727e8f..da50178 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/Float64DataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Float64DataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaFloat64; -import com.beanit.openiec61850.BdaType; +import com.beanit.iec61850bean.BdaFloat64; +import com.beanit.iec61850bean.BdaType; public class Float64DataBind extends TextFieldDataBind { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int16DataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int16DataBind.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/Int16DataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/Int16DataBind.java index a88f08a..eb9250e 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int16DataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int16DataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaInt16; -import com.beanit.openiec61850.BdaType; +import com.beanit.iec61850bean.BdaInt16; +import com.beanit.iec61850bean.BdaType; public class Int16DataBind extends TextFieldDataBind { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int16UDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int16UDataBind.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/Int16UDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/Int16UDataBind.java index d5d49c5..7196aff 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int16UDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int16UDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaInt16U; -import com.beanit.openiec61850.BdaType; +import com.beanit.iec61850bean.BdaInt16U; +import com.beanit.iec61850bean.BdaType; public class Int16UDataBind extends TextFieldDataBind { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int32DataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int32DataBind.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/Int32DataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/Int32DataBind.java index 9f72eb9..2075ab5 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int32DataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int32DataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaInt32; -import com.beanit.openiec61850.BdaType; +import com.beanit.iec61850bean.BdaInt32; +import com.beanit.iec61850bean.BdaType; public class Int32DataBind extends TextFieldDataBind { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int32UDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int32UDataBind.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/Int32UDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/Int32UDataBind.java index b3a84de..1409848 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int32UDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int32UDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaInt32U; -import com.beanit.openiec61850.BdaType; +import com.beanit.iec61850bean.BdaInt32U; +import com.beanit.iec61850bean.BdaType; public class Int32UDataBind extends TextFieldDataBind { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int64DataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int64DataBind.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/Int64DataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/Int64DataBind.java index 2f7b1de..a7b16cb 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int64DataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int64DataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaInt64; -import com.beanit.openiec61850.BdaType; +import com.beanit.iec61850bean.BdaInt64; +import com.beanit.iec61850bean.BdaType; public class Int64DataBind extends TextFieldDataBind { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int8DataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int8DataBind.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/Int8DataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/Int8DataBind.java index 535148a..6acf98e 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int8DataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int8DataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaInt8; -import com.beanit.openiec61850.BdaType; +import com.beanit.iec61850bean.BdaInt8; +import com.beanit.iec61850bean.BdaType; public class Int8DataBind extends TextFieldDataBind { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int8UDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int8UDataBind.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/Int8UDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/Int8UDataBind.java index 0382c2e..0205554 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/Int8UDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/Int8UDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaInt8U; -import com.beanit.openiec61850.BdaType; +import com.beanit.iec61850bean.BdaInt8U; +import com.beanit.iec61850bean.BdaType; public class Int8UDataBind extends TextFieldDataBind { diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/OctetStringDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/OctetStringDataBind.java similarity index 84% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/OctetStringDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/OctetStringDataBind.java index f32c591..a682f11 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/OctetStringDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/OctetStringDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaOctetString; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaOctetString; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import javax.swing.JComponent; import javax.swing.JLabel; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/OptfldsDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/OptfldsDataBind.java similarity index 93% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/OptfldsDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/OptfldsDataBind.java index 31446c2..73e60c2 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/OptfldsDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/OptfldsDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaOptFlds; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaOptFlds; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import java.awt.Component; import javax.swing.BoxLayout; import javax.swing.JCheckBox; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/QualityDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/QualityDataBind.java similarity index 94% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/QualityDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/QualityDataBind.java index 43ff968..5c126d6 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/QualityDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/QualityDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaQuality; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaQuality; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import java.awt.Component; import javax.swing.BoxLayout; import javax.swing.JCheckBox; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/ReasonForInclusionDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/ReasonForInclusionDataBind.java similarity index 91% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/ReasonForInclusionDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/ReasonForInclusionDataBind.java index 88ee19d..9085073 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/ReasonForInclusionDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/ReasonForInclusionDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaReasonForInclusion; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaReasonForInclusion; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import java.awt.Component; import javax.swing.BoxLayout; import javax.swing.JCheckBox; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/TapCommandDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/TapCommandDataBind.java similarity index 84% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/TapCommandDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/TapCommandDataBind.java index fc827e4..1270a0d 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/TapCommandDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/TapCommandDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaTapCommand; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaTapCommand; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import javax.swing.JComboBox; import javax.swing.JComponent; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/TextFieldDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/TextFieldDataBind.java similarity index 91% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/TextFieldDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/TextFieldDataBind.java index 88be445..7f7aeba 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/TextFieldDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/TextFieldDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BasicDataAttribute; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BasicDataAttribute; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import javax.swing.JComponent; import javax.swing.JTextField; import javax.swing.text.AttributeSet; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/TimeStampDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/TimeStampDataBind.java similarity index 91% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/TimeStampDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/TimeStampDataBind.java index 803948f..9736a42 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/TimeStampDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/TimeStampDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaTimestamp; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaTimestamp; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import com.toedter.calendar.JDateChooser; import java.awt.Dimension; import java.awt.FlowLayout; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/TriggerConditionDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/TriggerConditionDataBind.java similarity index 90% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/TriggerConditionDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/TriggerConditionDataBind.java index 6d729f4..9ed6168 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/TriggerConditionDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/TriggerConditionDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,11 +11,11 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaTriggerConditions; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.clientgui.BasicDataBind; +import com.beanit.iec61850bean.BdaTriggerConditions; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.clientgui.BasicDataBind; import java.awt.Component; import javax.swing.BoxLayout; import javax.swing.JCheckBox; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/UnicodeStringDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/UnicodeStringDataBind.java similarity index 90% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/UnicodeStringDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/UnicodeStringDataBind.java index 2058c97..9030462 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/UnicodeStringDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/UnicodeStringDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.BdaUnicodeString; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.BdaUnicodeString; import java.nio.CharBuffer; import java.nio.charset.CharacterCodingException; import java.nio.charset.Charset; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/databind/VisibleStringDataBind.java b/src/main/java/com/beanit/iec61850bean/clientgui/databind/VisibleStringDataBind.java similarity index 90% rename from src/main/java/com/beanit/openiec61850/clientgui/databind/VisibleStringDataBind.java rename to src/main/java/com/beanit/iec61850bean/clientgui/databind/VisibleStringDataBind.java index 0f8f583..64977b1 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/databind/VisibleStringDataBind.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/databind/VisibleStringDataBind.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.databind; +package com.beanit.iec61850bean.clientgui.databind; -import com.beanit.openiec61850.BdaType; -import com.beanit.openiec61850.BdaVisibleString; +import com.beanit.iec61850bean.BdaType; +import com.beanit.iec61850bean.BdaVisibleString; import java.nio.CharBuffer; import java.nio.charset.CharacterCodingException; import java.nio.charset.Charset; diff --git a/src/main/java/com/beanit/openiec61850/clientgui/util/Counter.java b/src/main/java/com/beanit/iec61850bean/clientgui/util/Counter.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/clientgui/util/Counter.java rename to src/main/java/com/beanit/iec61850bean/clientgui/util/Counter.java index 43db673..c29f48f 100644 --- a/src/main/java/com/beanit/openiec61850/clientgui/util/Counter.java +++ b/src/main/java/com/beanit/iec61850bean/clientgui/util/Counter.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.clientgui.util; +package com.beanit.iec61850bean.clientgui.util; public class Counter { private int value; diff --git a/src/main/java/com/beanit/openiec61850/internal/BerBoolean.java b/src/main/java/com/beanit/iec61850bean/internal/BerBoolean.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/internal/BerBoolean.java rename to src/main/java/com/beanit/iec61850bean/internal/BerBoolean.java index bfb38c7..635282d 100644 --- a/src/main/java/com/beanit/openiec61850/internal/BerBoolean.java +++ b/src/main/java/com/beanit/iec61850bean/internal/BerBoolean.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal; +package com.beanit.iec61850bean.internal; import com.beanit.asn1bean.ber.BerLength; import com.beanit.asn1bean.ber.BerTag; diff --git a/src/main/java/com/beanit/openiec61850/internal/HexString.java b/src/main/java/com/beanit/iec61850bean/internal/HexString.java similarity index 99% rename from src/main/java/com/beanit/openiec61850/internal/HexString.java rename to src/main/java/com/beanit/iec61850bean/internal/HexString.java index cb2362d..e83c3d8 100644 --- a/src/main/java/com/beanit/openiec61850/internal/HexString.java +++ b/src/main/java/com/beanit/iec61850bean/internal/HexString.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal; +package com.beanit.iec61850bean.internal; import java.nio.ByteBuffer; import java.util.Objects; diff --git a/src/main/java/com/beanit/openiec61850/internal/NamedThreadFactory.java b/src/main/java/com/beanit/iec61850bean/internal/NamedThreadFactory.java similarity index 97% rename from src/main/java/com/beanit/openiec61850/internal/NamedThreadFactory.java rename to src/main/java/com/beanit/iec61850bean/internal/NamedThreadFactory.java index 56a9e27..2d663ce 100644 --- a/src/main/java/com/beanit/openiec61850/internal/NamedThreadFactory.java +++ b/src/main/java/com/beanit/iec61850bean/internal/NamedThreadFactory.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal; +package com.beanit.iec61850bean.internal; import java.util.concurrent.ThreadFactory; import java.util.concurrent.atomic.AtomicInteger; diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/Action.java b/src/main/java/com/beanit/iec61850bean/internal/cli/Action.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/internal/cli/Action.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/Action.java index 05f18cc..f040472 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/Action.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/Action.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; public class Action { diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/ActionException.java b/src/main/java/com/beanit/iec61850bean/internal/cli/ActionException.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/internal/cli/ActionException.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/ActionException.java index b3d2ab8..f6bb64c 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/ActionException.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/ActionException.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; public final class ActionException extends Exception { diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/ActionListener.java b/src/main/java/com/beanit/iec61850bean/internal/cli/ActionListener.java similarity index 93% rename from src/main/java/com/beanit/openiec61850/internal/cli/ActionListener.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/ActionListener.java index 6208927..cbacc6e 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/ActionListener.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/ActionListener.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; public interface ActionListener { diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/ActionProcessor.java b/src/main/java/com/beanit/iec61850bean/internal/cli/ActionProcessor.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/internal/cli/ActionProcessor.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/ActionProcessor.java index 882457a..bb8d146 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/ActionProcessor.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/ActionProcessor.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; import static java.lang.System.exit; import static java.lang.System.out; diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/CliParameter.java b/src/main/java/com/beanit/iec61850bean/internal/cli/CliParameter.java similarity index 96% rename from src/main/java/com/beanit/openiec61850/internal/cli/CliParameter.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/CliParameter.java index e7aa39b..3d92a1c 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/CliParameter.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/CliParameter.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; public abstract class CliParameter { diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/CliParameterBuilder.java b/src/main/java/com/beanit/iec61850bean/internal/cli/CliParameterBuilder.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/internal/cli/CliParameterBuilder.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/CliParameterBuilder.java index 98529bc..6154857 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/CliParameterBuilder.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/CliParameterBuilder.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; import java.util.List; diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/CliParseException.java b/src/main/java/com/beanit/iec61850bean/internal/cli/CliParseException.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/internal/cli/CliParseException.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/CliParseException.java index 00b9702..27e5ae7 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/CliParseException.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/CliParseException.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; public final class CliParseException extends Exception { diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/CliParser.java b/src/main/java/com/beanit/iec61850bean/internal/cli/CliParser.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/internal/cli/CliParser.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/CliParser.java index 1e825d7..386c7b1 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/CliParser.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/CliParser.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; import java.util.ArrayList; import java.util.LinkedHashSet; diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/FlagCliParameter.java b/src/main/java/com/beanit/iec61850bean/internal/cli/FlagCliParameter.java similarity index 96% rename from src/main/java/com/beanit/openiec61850/internal/cli/FlagCliParameter.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/FlagCliParameter.java index 9672d65..84e57b0 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/FlagCliParameter.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/FlagCliParameter.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; public class FlagCliParameter extends CliParameter { diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/IntCliParameter.java b/src/main/java/com/beanit/iec61850bean/internal/cli/IntCliParameter.java similarity index 97% rename from src/main/java/com/beanit/openiec61850/internal/cli/IntCliParameter.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/IntCliParameter.java index 1f72d30..5e3dd4f 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/IntCliParameter.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/IntCliParameter.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; public class IntCliParameter extends ValueCliParameter { diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/LongCliParameter.java b/src/main/java/com/beanit/iec61850bean/internal/cli/LongCliParameter.java similarity index 97% rename from src/main/java/com/beanit/openiec61850/internal/cli/LongCliParameter.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/LongCliParameter.java index e9f2663..343575a 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/LongCliParameter.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/LongCliParameter.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; public class LongCliParameter extends ValueCliParameter { diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/StringCliParameter.java b/src/main/java/com/beanit/iec61850bean/internal/cli/StringCliParameter.java similarity index 97% rename from src/main/java/com/beanit/openiec61850/internal/cli/StringCliParameter.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/StringCliParameter.java index 2dde263..68dfc99 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/StringCliParameter.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/StringCliParameter.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; public class StringCliParameter extends ValueCliParameter { diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/StringListCliParameter.java b/src/main/java/com/beanit/iec61850bean/internal/cli/StringListCliParameter.java similarity index 98% rename from src/main/java/com/beanit/openiec61850/internal/cli/StringListCliParameter.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/StringListCliParameter.java index 427cbb0..c9935db 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/StringListCliParameter.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/StringListCliParameter.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; import java.util.ArrayList; import java.util.List; diff --git a/src/main/java/com/beanit/openiec61850/internal/cli/ValueCliParameter.java b/src/main/java/com/beanit/iec61850bean/internal/cli/ValueCliParameter.java similarity index 96% rename from src/main/java/com/beanit/openiec61850/internal/cli/ValueCliParameter.java rename to src/main/java/com/beanit/iec61850bean/internal/cli/ValueCliParameter.java index 46c6120..6f08d31 100644 --- a/src/main/java/com/beanit/openiec61850/internal/cli/ValueCliParameter.java +++ b/src/main/java/com/beanit/iec61850bean/internal/cli/ValueCliParameter.java @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.cli; +package com.beanit.iec61850bean.internal.cli; abstract class ValueCliParameter extends CliParameter { diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/AbstractDataAttribute.java b/src/main/java/com/beanit/iec61850bean/internal/scl/AbstractDataAttribute.java similarity index 94% rename from src/main/java/com/beanit/openiec61850/internal/scl/AbstractDataAttribute.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/AbstractDataAttribute.java index 12dc1e9..445f878 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/AbstractDataAttribute.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/AbstractDataAttribute.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; import org.w3c.dom.NodeList; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/AbstractElement.java b/src/main/java/com/beanit/iec61850bean/internal/scl/AbstractElement.java similarity index 90% rename from src/main/java/com/beanit/openiec61850/internal/scl/AbstractElement.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/AbstractElement.java index 8af91b6..ee90eaa 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/AbstractElement.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/AbstractElement.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/AbstractType.java b/src/main/java/com/beanit/iec61850bean/internal/scl/AbstractType.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/internal/scl/AbstractType.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/AbstractType.java index d397816..7320637 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/AbstractType.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/AbstractType.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import org.w3c.dom.Node; public abstract class AbstractType { diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/Bda.java b/src/main/java/com/beanit/iec61850bean/internal/scl/Bda.java similarity index 83% rename from src/main/java/com/beanit/openiec61850/internal/scl/Bda.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/Bda.java index cf08f6f..7184da4 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/Bda.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/Bda.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import org.w3c.dom.Node; public final class Bda extends AbstractDataAttribute { diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/Da.java b/src/main/java/com/beanit/iec61850bean/internal/scl/Da.java similarity index 91% rename from src/main/java/com/beanit/openiec61850/internal/scl/Da.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/Da.java index f24f0c3..91809da 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/Da.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/Da.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.Fc; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.Fc; +import com.beanit.iec61850bean.SclParseException; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/DaType.java b/src/main/java/com/beanit/iec61850bean/internal/scl/DaType.java similarity index 88% rename from src/main/java/com/beanit/openiec61850/internal/scl/DaType.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/DaType.java index 717bdc8..b9fa1b0 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/DaType.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/DaType.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import java.util.ArrayList; import java.util.List; import org.w3c.dom.Node; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/Do.java b/src/main/java/com/beanit/iec61850bean/internal/scl/Do.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/internal/scl/Do.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/Do.java index d26483d..3ba6381 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/Do.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/Do.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/DoType.java b/src/main/java/com/beanit/iec61850bean/internal/scl/DoType.java similarity index 90% rename from src/main/java/com/beanit/openiec61850/internal/scl/DoType.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/DoType.java index 27288de..67bfce6 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/DoType.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/DoType.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import java.util.ArrayList; import java.util.List; import org.w3c.dom.Node; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/EnumType.java b/src/main/java/com/beanit/iec61850bean/internal/scl/EnumType.java similarity index 90% rename from src/main/java/com/beanit/openiec61850/internal/scl/EnumType.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/EnumType.java index 6c91d1e..7de6699 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/EnumType.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/EnumType.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import java.util.ArrayList; import java.util.List; import org.w3c.dom.Node; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/EnumVal.java b/src/main/java/com/beanit/iec61850bean/internal/scl/EnumVal.java similarity index 90% rename from src/main/java/com/beanit/openiec61850/internal/scl/EnumVal.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/EnumVal.java index 0141355..6be1024 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/EnumVal.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/EnumVal.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/LnSubDef.java b/src/main/java/com/beanit/iec61850bean/internal/scl/LnSubDef.java similarity index 85% rename from src/main/java/com/beanit/openiec61850/internal/scl/LnSubDef.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/LnSubDef.java index 2a07798..05fa8e6 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/LnSubDef.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/LnSubDef.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.LogicalNode; +import com.beanit.iec61850bean.LogicalNode; import org.w3c.dom.Node; public class LnSubDef { diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/LnType.java b/src/main/java/com/beanit/iec61850bean/internal/scl/LnType.java similarity index 90% rename from src/main/java/com/beanit/openiec61850/internal/scl/LnType.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/LnType.java index 3b5555e..7947ec3 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/LnType.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/LnType.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import java.util.ArrayList; import java.util.List; import org.w3c.dom.Node; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/Sdo.java b/src/main/java/com/beanit/iec61850bean/internal/scl/Sdo.java similarity index 89% rename from src/main/java/com/beanit/openiec61850/internal/scl/Sdo.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/Sdo.java index 9521fcb..f196886 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/Sdo.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/Sdo.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/TypeDefinitions.java b/src/main/java/com/beanit/iec61850bean/internal/scl/TypeDefinitions.java similarity index 95% rename from src/main/java/com/beanit/openiec61850/internal/scl/TypeDefinitions.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/TypeDefinitions.java index a022811..dd0202c 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/TypeDefinitions.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/TypeDefinitions.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; import java.util.ArrayList; diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/Util.java b/src/main/java/com/beanit/iec61850bean/internal/scl/Util.java similarity index 94% rename from src/main/java/com/beanit/openiec61850/internal/scl/Util.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/Util.java index a4ea149..33b6b84 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/Util.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/Util.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,9 +11,9 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; -import com.beanit.openiec61850.SclParseException; +import com.beanit.iec61850bean.SclParseException; public final class Util { diff --git a/src/main/java/com/beanit/openiec61850/internal/scl/Value.java b/src/main/java/com/beanit/iec61850bean/internal/scl/Value.java similarity index 87% rename from src/main/java/com/beanit/openiec61850/internal/scl/Value.java rename to src/main/java/com/beanit/iec61850bean/internal/scl/Value.java index 878b6d1..55730ca 100644 --- a/src/main/java/com/beanit/openiec61850/internal/scl/Value.java +++ b/src/main/java/com/beanit/iec61850bean/internal/scl/Value.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.internal.scl; +package com.beanit.iec61850bean.internal.scl; public final class Value { diff --git a/src/main/java/com/beanit/josistack/AcseAssociation.java b/src/main/java/com/beanit/josistack/AcseAssociation.java index d7489b5..8360a03 100644 --- a/src/main/java/com/beanit/josistack/AcseAssociation.java +++ b/src/main/java/com/beanit/josistack/AcseAssociation.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/main/java/com/beanit/josistack/AcseAssociationListener.java b/src/main/java/com/beanit/josistack/AcseAssociationListener.java index b538e1e..7d8f358 100644 --- a/src/main/java/com/beanit/josistack/AcseAssociationListener.java +++ b/src/main/java/com/beanit/josistack/AcseAssociationListener.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/main/java/com/beanit/josistack/ByteBufferInputStream.java b/src/main/java/com/beanit/josistack/ByteBufferInputStream.java index 6dc73a1..2433b68 100644 --- a/src/main/java/com/beanit/josistack/ByteBufferInputStream.java +++ b/src/main/java/com/beanit/josistack/ByteBufferInputStream.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/main/java/com/beanit/josistack/ClientAcseSap.java b/src/main/java/com/beanit/josistack/ClientAcseSap.java index 228cdae..82bc537 100644 --- a/src/main/java/com/beanit/josistack/ClientAcseSap.java +++ b/src/main/java/com/beanit/josistack/ClientAcseSap.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/main/java/com/beanit/josistack/DecodingException.java b/src/main/java/com/beanit/josistack/DecodingException.java index 56fe59d..9aaef12 100644 --- a/src/main/java/com/beanit/josistack/DecodingException.java +++ b/src/main/java/com/beanit/josistack/DecodingException.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/main/java/com/beanit/josistack/ServerAcseSap.java b/src/main/java/com/beanit/josistack/ServerAcseSap.java index 2ef9bfe..3c5721b 100644 --- a/src/main/java/com/beanit/josistack/ServerAcseSap.java +++ b/src/main/java/com/beanit/josistack/ServerAcseSap.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/main/java/com/beanit/jositransport/ClientTSap.java b/src/main/java/com/beanit/jositransport/ClientTSap.java index e3cd444..5777de4 100644 --- a/src/main/java/com/beanit/jositransport/ClientTSap.java +++ b/src/main/java/com/beanit/jositransport/ClientTSap.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/main/java/com/beanit/jositransport/ServerTSap.java b/src/main/java/com/beanit/jositransport/ServerTSap.java index 20aad8f..4db0cde 100644 --- a/src/main/java/com/beanit/jositransport/ServerTSap.java +++ b/src/main/java/com/beanit/jositransport/ServerTSap.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/main/java/com/beanit/jositransport/ServerThread.java b/src/main/java/com/beanit/jositransport/ServerThread.java index cf7e349..8a58e34 100644 --- a/src/main/java/com/beanit/jositransport/ServerThread.java +++ b/src/main/java/com/beanit/jositransport/ServerThread.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -13,7 +13,7 @@ */ package com.beanit.jositransport; -import com.beanit.openiec61850.internal.NamedThreadFactory; +import com.beanit.iec61850bean.internal.NamedThreadFactory; import java.io.IOException; import java.net.ServerSocket; import java.net.Socket; @@ -58,7 +58,7 @@ final class ServerThread extends Thread { public void run() { ExecutorService executor = - Executors.newCachedThreadPool(new NamedThreadFactory("openiec61850-osi-server")); + Executors.newCachedThreadPool(new NamedThreadFactory("iec61850bean-server")); try { Socket clientSocket = null; diff --git a/src/main/java/com/beanit/jositransport/TConnection.java b/src/main/java/com/beanit/jositransport/TConnection.java index c8da0c8..b0194d3 100644 --- a/src/main/java/com/beanit/jositransport/TConnection.java +++ b/src/main/java/com/beanit/jositransport/TConnection.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/main/java/com/beanit/jositransport/TConnectionListener.java b/src/main/java/com/beanit/jositransport/TConnectionListener.java index 09149f5..8c578f6 100644 --- a/src/main/java/com/beanit/jositransport/TConnectionListener.java +++ b/src/main/java/com/beanit/jositransport/TConnectionListener.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/test/java/com/beanit/openiec61850/integrationtests/ArchitectureTest.java b/src/test/java/com/beanit/iec61850bean/integrationtests/ArchitectureTest.java similarity index 91% rename from src/test/java/com/beanit/openiec61850/integrationtests/ArchitectureTest.java rename to src/test/java/com/beanit/iec61850bean/integrationtests/ArchitectureTest.java index 4b1c366..96a7bd3 100644 --- a/src/test/java/com/beanit/openiec61850/integrationtests/ArchitectureTest.java +++ b/src/test/java/com/beanit/iec61850bean/integrationtests/ArchitectureTest.java @@ -1,4 +1,4 @@ -package com.beanit.openiec61850.integrationtests; +package com.beanit.iec61850bean.integrationtests; import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.classes; diff --git a/src/test/java/com/beanit/openiec61850/integrationtests/ClientServerITest.java b/src/test/java/com/beanit/iec61850bean/integrationtests/ClientServerITest.java similarity index 92% rename from src/test/java/com/beanit/openiec61850/integrationtests/ClientServerITest.java rename to src/test/java/com/beanit/iec61850bean/integrationtests/ClientServerITest.java index f0b842b..49f15d8 100644 --- a/src/test/java/com/beanit/openiec61850/integrationtests/ClientServerITest.java +++ b/src/test/java/com/beanit/iec61850bean/integrationtests/ClientServerITest.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,7 +11,7 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.integrationtests; +package com.beanit.iec61850bean.integrationtests; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; @@ -19,31 +19,31 @@ import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertTrue; -import com.beanit.openiec61850.BasicDataAttribute; -import com.beanit.openiec61850.BdaBoolean; -import com.beanit.openiec61850.BdaFloat32; -import com.beanit.openiec61850.BdaInt32; -import com.beanit.openiec61850.BdaInt32U; -import com.beanit.openiec61850.BdaQuality; -import com.beanit.openiec61850.BdaQuality.Validity; -import com.beanit.openiec61850.BdaReasonForInclusion; -import com.beanit.openiec61850.BdaTimestamp; -import com.beanit.openiec61850.BdaVisibleString; -import com.beanit.openiec61850.ClientAssociation; -import com.beanit.openiec61850.ClientEventListener; -import com.beanit.openiec61850.ClientSap; -import com.beanit.openiec61850.DataSet; -import com.beanit.openiec61850.Fc; -import com.beanit.openiec61850.FcModelNode; -import com.beanit.openiec61850.ModelNode; -import com.beanit.openiec61850.Report; -import com.beanit.openiec61850.SclParseException; -import com.beanit.openiec61850.SclParser; -import com.beanit.openiec61850.ServerEventListener; -import com.beanit.openiec61850.ServerModel; -import com.beanit.openiec61850.ServerSap; -import com.beanit.openiec61850.ServiceError; -import com.beanit.openiec61850.Urcb; +import com.beanit.iec61850bean.BasicDataAttribute; +import com.beanit.iec61850bean.BdaBoolean; +import com.beanit.iec61850bean.BdaFloat32; +import com.beanit.iec61850bean.BdaInt32; +import com.beanit.iec61850bean.BdaInt32U; +import com.beanit.iec61850bean.BdaQuality; +import com.beanit.iec61850bean.BdaQuality.Validity; +import com.beanit.iec61850bean.BdaReasonForInclusion; +import com.beanit.iec61850bean.BdaTimestamp; +import com.beanit.iec61850bean.BdaVisibleString; +import com.beanit.iec61850bean.ClientAssociation; +import com.beanit.iec61850bean.ClientEventListener; +import com.beanit.iec61850bean.ClientSap; +import com.beanit.iec61850bean.DataSet; +import com.beanit.iec61850bean.Fc; +import com.beanit.iec61850bean.FcModelNode; +import com.beanit.iec61850bean.ModelNode; +import com.beanit.iec61850bean.Report; +import com.beanit.iec61850bean.SclParseException; +import com.beanit.iec61850bean.SclParser; +import com.beanit.iec61850bean.ServerEventListener; +import com.beanit.iec61850bean.ServerModel; +import com.beanit.iec61850bean.ServerSap; +import com.beanit.iec61850bean.ServiceError; +import com.beanit.iec61850bean.Urcb; import java.io.IOException; import java.net.InetAddress; import java.util.ArrayList; @@ -127,7 +127,7 @@ public class ClientServerITest extends Thread implements ServerEventListener, Cl // --------------------------------------------------- // ------------------1st test server------------------ - runServer("src/test/resources/openiec61850sample01.icd", port); + runServer("src/test/resources/iec61850bean-sample01.icd", port); System.out.println("IED Server is running"); // ----------------------------------------------------------- @@ -139,7 +139,8 @@ public class ClientServerITest extends Thread implements ServerEventListener, Cl clientAssociation = clientSap.associate(InetAddress.getByName(host), port, null, this); // ServerModel serverModel = clientAssociation.retrieveModel(); - ServerModel serverModel = SclParser.parse("src/test/resources/openiec61850sample01.icd").get(0); + ServerModel serverModel = + SclParser.parse("src/test/resources/iec61850bean-sample01.icd").get(0); clientAssociation.setServerModel(serverModel); getAllBdas(serverModel); diff --git a/src/test/java/com/beanit/openiec61850/integrationtests/ClientServerITest2.java b/src/test/java/com/beanit/iec61850bean/integrationtests/ClientServerITest2.java similarity index 90% rename from src/test/java/com/beanit/openiec61850/integrationtests/ClientServerITest2.java rename to src/test/java/com/beanit/iec61850bean/integrationtests/ClientServerITest2.java index 77b2844..2e2a191 100644 --- a/src/test/java/com/beanit/openiec61850/integrationtests/ClientServerITest2.java +++ b/src/test/java/com/beanit/iec61850bean/integrationtests/ClientServerITest2.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,27 +11,27 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.integrationtests; +package com.beanit.iec61850bean.integrationtests; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; -import com.beanit.openiec61850.BasicDataAttribute; -import com.beanit.openiec61850.BdaReasonForInclusion; -import com.beanit.openiec61850.ClientAssociation; -import com.beanit.openiec61850.ClientEventListener; -import com.beanit.openiec61850.ClientSap; -import com.beanit.openiec61850.Fc; -import com.beanit.openiec61850.FcModelNode; -import com.beanit.openiec61850.ModelNode; -import com.beanit.openiec61850.Report; -import com.beanit.openiec61850.SclParseException; -import com.beanit.openiec61850.SclParser; -import com.beanit.openiec61850.ServerEventListener; -import com.beanit.openiec61850.ServerModel; -import com.beanit.openiec61850.ServerSap; -import com.beanit.openiec61850.ServiceError; +import com.beanit.iec61850bean.BasicDataAttribute; +import com.beanit.iec61850bean.BdaReasonForInclusion; +import com.beanit.iec61850bean.ClientAssociation; +import com.beanit.iec61850bean.ClientEventListener; +import com.beanit.iec61850bean.ClientSap; +import com.beanit.iec61850bean.Fc; +import com.beanit.iec61850bean.FcModelNode; +import com.beanit.iec61850bean.ModelNode; +import com.beanit.iec61850bean.Report; +import com.beanit.iec61850bean.SclParseException; +import com.beanit.iec61850bean.SclParser; +import com.beanit.iec61850bean.ServerEventListener; +import com.beanit.iec61850bean.ServerModel; +import com.beanit.iec61850bean.ServerSap; +import com.beanit.iec61850bean.ServiceError; import java.io.IOException; import java.net.InetAddress; import java.util.Arrays; diff --git a/src/test/java/com/beanit/openiec61850/integrationtests/ReportingTest.java b/src/test/java/com/beanit/iec61850bean/integrationtests/ReportingTest.java similarity index 86% rename from src/test/java/com/beanit/openiec61850/integrationtests/ReportingTest.java rename to src/test/java/com/beanit/iec61850bean/integrationtests/ReportingTest.java index d3cc411..b2dc5ec 100644 --- a/src/test/java/com/beanit/openiec61850/integrationtests/ReportingTest.java +++ b/src/test/java/com/beanit/iec61850bean/integrationtests/ReportingTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,28 +11,28 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.integrationtests; +package com.beanit.iec61850bean.integrationtests; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; -import com.beanit.openiec61850.BasicDataAttribute; -import com.beanit.openiec61850.BdaFloat32; -import com.beanit.openiec61850.ClientAssociation; -import com.beanit.openiec61850.ClientEventListener; -import com.beanit.openiec61850.ClientSap; -import com.beanit.openiec61850.DataSet; -import com.beanit.openiec61850.Fc; -import com.beanit.openiec61850.FcModelNode; -import com.beanit.openiec61850.Report; -import com.beanit.openiec61850.SclParseException; -import com.beanit.openiec61850.SclParser; -import com.beanit.openiec61850.ServerEventListener; -import com.beanit.openiec61850.ServerModel; -import com.beanit.openiec61850.ServerSap; -import com.beanit.openiec61850.ServiceError; -import com.beanit.openiec61850.Urcb; +import com.beanit.iec61850bean.BasicDataAttribute; +import com.beanit.iec61850bean.BdaFloat32; +import com.beanit.iec61850bean.ClientAssociation; +import com.beanit.iec61850bean.ClientEventListener; +import com.beanit.iec61850bean.ClientSap; +import com.beanit.iec61850bean.DataSet; +import com.beanit.iec61850bean.Fc; +import com.beanit.iec61850bean.FcModelNode; +import com.beanit.iec61850bean.Report; +import com.beanit.iec61850bean.SclParseException; +import com.beanit.iec61850bean.SclParser; +import com.beanit.iec61850bean.ServerEventListener; +import com.beanit.iec61850bean.ServerModel; +import com.beanit.iec61850bean.ServerSap; +import com.beanit.iec61850bean.ServiceError; +import com.beanit.iec61850bean.Urcb; import java.io.IOException; import java.net.InetAddress; import java.util.ArrayList; @@ -50,7 +50,7 @@ public class ReportingTest implements ClientEventListener { private static final String CHANGING_SERVER_DA_REFERENCE_2 = "ied1lDevice1/DSCH1.SchdAbsTm.sptestval1"; private static final int PORT = 54321; - private static final String ICD_FILE = "src/test/resources/openiec61850sample01.icd"; + private static final String ICD_FILE = "src/test/resources/iec61850bean-sample01.icd"; private static final String URCB1_REFERENCE = "ied1lDevice1/LLN0.urcb101"; ClientAssociation clientAssociation; private ServerSap serverSap; diff --git a/src/test/java/com/beanit/openiec61850/integrationtests/SclTests.java b/src/test/java/com/beanit/iec61850bean/integrationtests/SclTests.java similarity index 83% rename from src/test/java/com/beanit/openiec61850/integrationtests/SclTests.java rename to src/test/java/com/beanit/iec61850bean/integrationtests/SclTests.java index e27cf1b..a992502 100644 --- a/src/test/java/com/beanit/openiec61850/integrationtests/SclTests.java +++ b/src/test/java/com/beanit/iec61850bean/integrationtests/SclTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -11,10 +11,10 @@ * or implied. See the License for the specific language governing permissions and limitations under * the License. */ -package com.beanit.openiec61850.integrationtests; +package com.beanit.iec61850bean.integrationtests; -import com.beanit.openiec61850.SclParseException; -import com.beanit.openiec61850.SclParser; +import com.beanit.iec61850bean.SclParseException; +import com.beanit.iec61850bean.SclParser; import org.junit.jupiter.api.Test; public class SclTests { diff --git a/src/test/java/com/beanit/josistack/SiemensClientITest.java b/src/test/java/com/beanit/josistack/SiemensClientITest.java index 1e993f7..d808ea4 100644 --- a/src/test/java/com/beanit/josistack/SiemensClientITest.java +++ b/src/test/java/com/beanit/josistack/SiemensClientITest.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/test/java/com/beanit/jositransport/ClientServerITest.java b/src/test/java/com/beanit/jositransport/ClientServerITest.java index 16f2801..8e13562 100644 --- a/src/test/java/com/beanit/jositransport/ClientServerITest.java +++ b/src/test/java/com/beanit/jositransport/ClientServerITest.java @@ -1,5 +1,5 @@ /* - * Copyright 2011 The OpenIEC61850 Authors + * Copyright 2011 The IEC61850bean Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at diff --git a/src/test/resources/openiec61850sample01.icd b/src/test/resources/iec61850bean-sample01.icd similarity index 100% rename from src/test/resources/openiec61850sample01.icd rename to src/test/resources/iec61850bean-sample01.icd