Implementatation of the Service locator pattern

This commit is contained in:
MSaifAsif
2014-12-06 02:39:54 +05:00
parent 3e42a10060
commit 1cb62f543b
10 changed files with 282 additions and 0 deletions

9
service-locator/pom.xml Normal file
View File

@ -0,0 +1,9 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.iluwatar</groupId>
<artifactId>java-design-patterns</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>service-locator</artifactId>
</project>