Skip to content

Commit 73dc1e7

Browse files
committed
FDP-2849: Renaming references to property files
1 parent 25bca51 commit 73dc1e7

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

osgp/protocol-adapter-iec60870/osgp-protocol-adapter-iec60870/src/main/java/org/opensmartgridplatform/adapter/protocol/iec60870/application/config/ApplicationContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
})
3030
@EnableTransactionManagement()
3131
@Import({Iec60870MessagingConfig.class, Iec60870Config.class, MetricsConfig.class})
32-
@PropertySource("classpath:osgp-adapter-protocol-iec60870.properties")
32+
@PropertySource("classpath:osgp-protocol-adapter-iec60870.properties")
3333
@PropertySource(value = "file:${osgp/Global/config}", ignoreResourceNotFound = true)
3434
@PropertySource(
3535
value = "file:${osgp/AdapterProtocolIec60870/config}",

osgp/protocol-adapter-iec60870/osgp-protocol-adapter-iec60870/src/main/java/org/opensmartgridplatform/adapter/protocol/iec60870/application/config/Iec60870Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
@Configuration
1717
@EnableTransactionManagement()
18-
@PropertySource("classpath:osgp-adapter-protocol-iec60870.properties")
18+
@PropertySource("classpath:osgp-protocol-adapter-iec60870.properties")
1919
@PropertySource(value = "file:${osgp/Global/config}", ignoreResourceNotFound = true)
2020
@PropertySource(
2121
value = "file:${osgp/AdapterProtocolIec60870/config}",

osgp/protocol-adapter-iec60870/osgp-protocol-adapter-iec60870/src/main/java/org/opensmartgridplatform/adapter/protocol/iec60870/application/config/Iec60870MessagingConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/** An application context Java configuration class. */
1818
@Configuration
19-
@PropertySource("classpath:osgp-adapter-protocol-iec60870.properties")
19+
@PropertySource("classpath:osgp-protocol-adapter-iec60870.properties")
2020
@PropertySource(value = "file:${osgp/Global/config}", ignoreResourceNotFound = true)
2121
@PropertySource(
2222
value = "file:${osgp/AdapterProtocolIec60870/config}",

osgp/protocol-adapter-iec60870/osgp-protocol-adapter-iec60870/src/main/webapp/META-INF/context.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ SPDX-License-Identifier: Apache-2.0
4040
<Environment name="osgp/Global/config" value="/etc/osp/global.properties"
4141
type="java.lang.String" override="false" />
4242
<Environment name="osgp/AdapterProtocolIec60870/config"
43-
value="/etc/osp/osgp-adapter-protocol-iec60870.properties" type="java.lang.String"
43+
value="/etc/osp/osgp-protocol-adapter-iec60870.properties" type="java.lang.String"
4444
override="true" />
4545
<Environment name="osgp/AdapterProtocolIec60870/log-config"
4646
value="/etc/osp/osgp-adapter-protocol-iec60870-logback.xml" type="java.lang.String"

osgp/protocol-adapter-iec61850/osgp-protocol-adapter-iec61850/src/main/java/org/opensmartgridplatform/adapter/protocol/iec61850/application/config/ApplicationContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
Iec61850Config.class,
3131
MetricsConfig.class
3232
})
33-
@PropertySource("classpath:osgp-adapter-protocol-iec61850.properties")
33+
@PropertySource("classpath:osgp-protocol-adapter-iec61850.properties")
3434
@PropertySource(value = "file:${osgp/Global/config}", ignoreResourceNotFound = true)
3535
@PropertySource(
3636
value = "file:${osgp/AdapterProtocolIec61850/config}",

osgp/protocol-adapter-iec61850/osgp-protocol-adapter-iec61850/src/main/java/org/opensmartgridplatform/adapter/protocol/iec61850/application/config/Iec61850Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
@Configuration
3232
@EnableTransactionManagement()
33-
@PropertySource("classpath:osgp-adapter-protocol-iec61850.properties")
33+
@PropertySource("classpath:osgp-protocol-adapter-iec61850.properties")
3434
@PropertySource(value = "file:${osgp/Global/config}", ignoreResourceNotFound = true)
3535
@PropertySource(
3636
value = "file:${osgp/AdapterProtocolIec61850/config}",

osgp/protocol-adapter-iec61850/osgp-protocol-adapter-iec61850/src/main/java/org/opensmartgridplatform/adapter/protocol/iec61850/application/config/MessagingConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/** An application context Java configuration class. */
2121
@Configuration
2222
@EnableTransactionManagement()
23-
@PropertySource("classpath:osgp-adapter-protocol-iec61850.properties")
23+
@PropertySource("classpath:osgp-protocol-adapter-iec61850.properties")
2424
@PropertySource(value = "file:${osgp/Global/config}", ignoreResourceNotFound = true)
2525
@PropertySource(
2626
value = "file:${osgp/AdapterProtocolIec61850/config}",

osgp/protocol-adapter-iec61850/osgp-protocol-adapter-iec61850/src/main/webapp/META-INF/context.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ SPDX-License-Identifier: Apache-2.0
4040
<Environment name="osgp/Global/config" value="/etc/osp/global.properties"
4141
type="java.lang.String" override="false" />
4242
<Environment name="osgp/AdapterProtocolIec61850/config"
43-
value="/etc/osp/osgp-adapter-protocol-iec61850.properties" type="java.lang.String"
43+
value="/etc/osp/osgp-protocol-adapter-iec61850.properties" type="java.lang.String"
4444
override="true" />
4545
<Environment name="osgp/AdapterProtocolIec61850/log-config"
4646
value="/etc/osp/osgp-adapter-protocol-iec61850-logback.xml" type="java.lang.String"

osgp/protocol-adapter-oslp/osgp-protocol-adapter-oslp-elster/src/main/java/org/opensmartgridplatform/adapter/protocol/oslp/elster/application/config/ApplicationContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
})
3333
@Import({MetricsConfig.class})
3434
@EnableTransactionManagement()
35-
@PropertySource("classpath:osgp-adapter-protocol-oslp-elster.properties")
35+
@PropertySource("classpath:osgp-protocol-adapter-oslp-elster.properties")
3636
@PropertySource(value = "file:${osgp/Global/config}", ignoreResourceNotFound = true)
3737
@PropertySource(
3838
value = "file:${osgp/AdapterProtocolOslpElster/config}",

osgp/protocol-adapter-oslp/osgp-protocol-adapter-oslp-elster/src/main/webapp/META-INF/context.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ SPDX-License-Identifier: Apache-2.0
4141
type="java.lang.String" override="true" />
4242

4343
<Environment name="osgp/AdapterProtocolOslpElster/config"
44-
value="/etc/osp/osgp-adapter-protocol-oslp-elster.properties" type="java.lang.String"
44+
value="/etc/osp/osgp-protocol-adapter-oslp-elster.properties" type="java.lang.String"
4545
override="true" />
4646
<Environment name="osgp/AdapterProtocolOslpElster/log-config"
4747
value="/etc/osp/osgp-adapter-protocol-oslp-elster-logback.xml" type="java.lang.String"

0 commit comments

Comments
 (0)