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

View File

@ -1,4 +1,4 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
/**
* Service locator pattern, used to lookup jndi services

View File

@ -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

View File

@ -1,4 +1,4 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
/**
* This is going to be the parent service interface which we will

View File

@ -1,4 +1,4 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
import java.util.HashMap;
import java.util.Map;

View File

@ -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

View File

@ -1,4 +1,4 @@
package com.iluwatar;
package com.iluwatar.servicelocator;
/**
* The service locator module.