Skip to content

Commit 3b45f2c

Browse files
committed
Consistent naming for EIP patterns iluwatar#733
1 parent 379a825 commit 3b45f2c

File tree

16 files changed

+16
-16
lines changed

16 files changed

+16
-16
lines changed
File renamed without changes.

message-channel/README.md renamed to eip-message-channel/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: pattern
3-
title: Message Channel
4-
folder: message-channel
5-
permalink: /patterns/message-channel/
3+
title: EIP Message Channel
4+
folder: eip-message-channel
5+
permalink: /patterns/eip-message-channel/
66
categories: Integration
77
tags:
88
- Java

message-channel/pom.xml renamed to eip-message-channel/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<artifactId>java-design-patterns</artifactId>
3333
<version>1.20.0-SNAPSHOT</version>
3434
</parent>
35-
<artifactId>message-channel</artifactId>
35+
<artifactId>eip-message-channel</artifactId>
3636
<dependencies>
3737
<dependency>
3838
<groupId>org.apache.camel</groupId>

message-channel/src/main/java/com/iluwatar/message/channel/App.java renamed to eip-message-channel/src/main/java/com/iluwatar/eip/message/channel/App.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
* THE SOFTWARE.
2222
*/
23-
package com.iluwatar.message.channel;
23+
package com.iluwatar.eip.message.channel;
2424

2525
import org.apache.camel.CamelContext;
2626
import org.apache.camel.builder.RouteBuilder;

publish-subscribe/src/test/java/com/iluwatar/publish/subscribe/AppTest.java renamed to eip-message-channel/src/test/java/com/iluwatar/eip/message/channel/AppTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
* THE SOFTWARE.
2222
*/
23-
package com.iluwatar.publish.subscribe;
23+
package com.iluwatar.eip.message.channel;
2424

2525
import org.junit.jupiter.api.Test;
2626

File renamed without changes.

publish-subscribe/README.md renamed to eip-publish-subscribe/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: pattern
3-
title: Publish Subscribe
4-
folder: publish-subscribe
5-
permalink: /patterns/publish-subscribe/
3+
title: EIP Publish Subscribe
4+
folder: eip-publish-subscribe
5+
permalink: /patterns/eip-publish-subscribe/
66
categories: Integration
77
tags:
88
- Java

publish-subscribe/pom.xml renamed to eip-publish-subscribe/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<artifactId>java-design-patterns</artifactId>
3131
<version>1.20.0-SNAPSHOT</version>
3232
</parent>
33-
<artifactId>publish-subscribe</artifactId>
33+
<artifactId>eip-publish-subscribe</artifactId>
3434
<dependencies>
3535
<dependency>
3636
<groupId>org.apache.camel</groupId>
@@ -51,4 +51,4 @@
5151
<scope>test</scope>
5252
</dependency>
5353
</dependencies>
54-
</project>
54+
</project>

publish-subscribe/src/main/java/com/iluwatar/publish/subscribe/App.java renamed to eip-publish-subscribe/src/main/java/com/iluwatar/eip/publish/subscribe/App.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
* THE SOFTWARE.
2222
*/
23-
package com.iluwatar.publish.subscribe;
23+
package com.iluwatar.eip.publish.subscribe;
2424

2525
import org.apache.camel.CamelContext;
2626
import org.apache.camel.ProducerTemplate;

message-channel/src/test/java/com/iluwatar/message/channel/AppTest.java renamed to eip-publish-subscribe/src/test/java/com/iluwatar/eip/publish/subscribe/AppTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2121
* THE SOFTWARE.
2222
*/
23-
package com.iluwatar.message.channel;
23+
package com.iluwatar.eip.publish.subscribe;
2424

2525
import org.junit.jupiter.api.Test;
2626

pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@
117117
<module>business-delegate</module>
118118
<module>half-sync-half-async</module>
119119
<module>layers</module>
120-
<module>message-channel</module>
120+
<module>eip-message-channel</module>
121121
<module>fluentinterface</module>
122122
<module>reactor</module>
123123
<module>caching</module>
124-
<module>publish-subscribe</module>
124+
<module>eip-publish-subscribe</module>
125125
<module>delegation</module>
126126
<module>event-driven-architecture</module>
127127
<module>api-gateway</module>
@@ -475,4 +475,4 @@
475475
</plugins>
476476
</reporting>
477477

478-
</project>
478+
</project>

0 commit comments

Comments
 (0)