Consistent naming for EIP patterns #733

This commit is contained in:
Milena Sapunova 2018-04-12 15:24:57 +03:00
parent 379a825182
commit 3b45f2cad6
16 changed files with 16 additions and 16 deletions

View File

@ -1,8 +1,8 @@
--- ---
layout: pattern layout: pattern
title: Message Channel title: EIP Message Channel
folder: message-channel folder: eip-message-channel
permalink: /patterns/message-channel/ permalink: /patterns/eip-message-channel/
categories: Integration categories: Integration
tags: tags:
- Java - Java

View File

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -32,7 +32,7 @@
<artifactId>java-design-patterns</artifactId> <artifactId>java-design-patterns</artifactId>
<version>1.20.0-SNAPSHOT</version> <version>1.20.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>message-channel</artifactId> <artifactId>eip-message-channel</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.camel</groupId> <groupId>org.apache.camel</groupId>

View File

@ -20,7 +20,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE. * THE SOFTWARE.
*/ */
package com.iluwatar.message.channel; package com.iluwatar.eip.message.channel;
import org.apache.camel.CamelContext; import org.apache.camel.CamelContext;
import org.apache.camel.builder.RouteBuilder; import org.apache.camel.builder.RouteBuilder;

View File

@ -20,7 +20,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE. * THE SOFTWARE.
*/ */
package com.iluwatar.publish.subscribe; package com.iluwatar.eip.message.channel;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;

View File

@ -1,8 +1,8 @@
--- ---
layout: pattern layout: pattern
title: Publish Subscribe title: EIP Publish Subscribe
folder: publish-subscribe folder: eip-publish-subscribe
permalink: /patterns/publish-subscribe/ permalink: /patterns/eip-publish-subscribe/
categories: Integration categories: Integration
tags: tags:
- Java - Java

View File

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -30,7 +30,7 @@
<artifactId>java-design-patterns</artifactId> <artifactId>java-design-patterns</artifactId>
<version>1.20.0-SNAPSHOT</version> <version>1.20.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>publish-subscribe</artifactId> <artifactId>eip-publish-subscribe</artifactId>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.camel</groupId> <groupId>org.apache.camel</groupId>
@ -51,4 +51,4 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -20,7 +20,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE. * THE SOFTWARE.
*/ */
package com.iluwatar.publish.subscribe; package com.iluwatar.eip.publish.subscribe;
import org.apache.camel.CamelContext; import org.apache.camel.CamelContext;
import org.apache.camel.ProducerTemplate; import org.apache.camel.ProducerTemplate;

View File

@ -20,7 +20,7 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE. * THE SOFTWARE.
*/ */
package com.iluwatar.message.channel; package com.iluwatar.eip.publish.subscribe;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;

View File

@ -117,11 +117,11 @@
<module>business-delegate</module> <module>business-delegate</module>
<module>half-sync-half-async</module> <module>half-sync-half-async</module>
<module>layers</module> <module>layers</module>
<module>message-channel</module> <module>eip-message-channel</module>
<module>fluentinterface</module> <module>fluentinterface</module>
<module>reactor</module> <module>reactor</module>
<module>caching</module> <module>caching</module>
<module>publish-subscribe</module> <module>eip-publish-subscribe</module>
<module>delegation</module> <module>delegation</module>
<module>event-driven-architecture</module> <module>event-driven-architecture</module>
<module>api-gateway</module> <module>api-gateway</module>
@ -475,4 +475,4 @@
</plugins> </plugins>
</reporting> </reporting>
</project> </project>