Changed package naming across all examples.

This commit is contained in:
Ilkka Seppala
2015-05-31 11:55:18 +03:00
parent 703ebd3e20
commit 8524c75ba6
437 changed files with 1095 additions and 1402 deletions
@@ -1,4 +1,4 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
/**
* Service locator pattern, used to lookup jndi services
@@ -1,4 +1,4 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
/**
* For JNDI lookup of services from the web.xml. Will match name of the service name that
@@ -1,4 +1,4 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
/**
* This is going to be the parent service interface which we will
@@ -1,4 +1,4 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
import java.util.HashMap;
import java.util.Map;
@@ -1,4 +1,4 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
/**
* This is a single service implementation of a sample service. This is the actual
@@ -1,4 +1,4 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
/**
* The service locator module.
@@ -1,7 +1,9 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
import org.junit.Test;
import com.iluwatar.servicelocator.App;
public class AppTest {
@Test