-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove restriction on AccessPoint name
- Loading branch information
1 parent
aea5dd9
commit ba860cf
Showing
8 changed files
with
158 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
sct-commons/src/test/resources/scl_update_communication/scl_with_communication.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!-- SPDX-FileCopyrightText: 2024 RTE FRANCE --> | ||
<!-- --> | ||
<!-- SPDX-License-Identifier: Apache-2.0 --> | ||
|
||
<SCL xmlns="http://www.iec.ch/61850/2003/SCL" version="2007" revision="B" release="4"> | ||
<Header id="HeaderID" version="version" revision="Revision" toolID="toolID"/> | ||
<Communication> | ||
<SubNetwork name="SubNetworkName" type="8-MMS"> | ||
<ConnectedAP iedName="IED_NAME1" apName="ConnectedAP_Name"> | ||
<Address> | ||
<P type="IP">1.2.3.4</P> | ||
</Address> | ||
<GSE ldInst="LD_INST11" cbName="LD_INST11_GSE"> | ||
<Address> | ||
<P type="APPID">11</P> | ||
</Address> | ||
</GSE> | ||
<PhysConn type="Connection"> | ||
<P type="Plug">PL</P> | ||
</PhysConn> | ||
</ConnectedAP> | ||
</SubNetwork> | ||
</Communication> | ||
<IED name="IED_NAME1"> | ||
<AccessPoint name="ConnectedAP_Name"/> | ||
</IED> | ||
</SCL> |
10 changes: 10 additions & 0 deletions
10
sct-commons/src/test/resources/scl_update_communication/scl_without_communication.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!-- SPDX-FileCopyrightText: 2024 RTE FRANCE --> | ||
<!-- --> | ||
<!-- SPDX-License-Identifier: Apache-2.0 --> | ||
|
||
<SCL xmlns="http://www.iec.ch/61850/2003/SCL" version="2007" revision="B" release="4"> | ||
<Header id="HeaderID" version="version" revision="Revision" toolID="toolID"/> | ||
<IED name="IED_NAME1"> | ||
<AccessPoint name="ConnectedAP_Name"/> | ||
</IED> | ||
</SCL> |