mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-09-05 22:17:09 +00:00
refactor: sanitize javadoc
This commit is contained in:
@@ -34,7 +34,6 @@ package com.iluwatar.servicelocator;
|
||||
* subsequent requests.
|
||||
* <br>
|
||||
*
|
||||
* @author saifasif
|
||||
*/
|
||||
public class App {
|
||||
|
||||
|
||||
@@ -30,7 +30,6 @@ import lombok.extern.slf4j.Slf4j;
|
||||
* For JNDI lookup of services from the web.xml. Will match name of the service name that is being
|
||||
* requested and return a newly created service object with the name
|
||||
*
|
||||
* @author saifasif
|
||||
*/
|
||||
@Slf4j
|
||||
public class InitContext {
|
||||
|
||||
@@ -29,7 +29,6 @@ package com.iluwatar.servicelocator;
|
||||
* services will have a <ul><li>service name</li> <li>unique id</li> <li>execution work
|
||||
* flow</li></ul>
|
||||
*
|
||||
* @author saifasif
|
||||
*/
|
||||
public interface Service {
|
||||
|
||||
|
||||
@@ -34,7 +34,6 @@ import lombok.extern.slf4j.Slf4j;
|
||||
* then placed into the cache map. On next hit, if same service name will be requested, it will be
|
||||
* returned from the cache
|
||||
*
|
||||
* @author saifasif
|
||||
*/
|
||||
@Slf4j
|
||||
public class ServiceCache {
|
||||
|
||||
@@ -31,7 +31,6 @@ import lombok.extern.slf4j.Slf4j;
|
||||
* process the request. The reference for this service is to be looked upon in the JNDI server that
|
||||
* can be set in the web.xml deployment descriptor
|
||||
*
|
||||
* @author saifasif
|
||||
*/
|
||||
@Slf4j
|
||||
public class ServiceImpl implements Service {
|
||||
|
||||
@@ -28,7 +28,6 @@ package com.iluwatar.servicelocator;
|
||||
* The service locator module. Will fetch service from cache, otherwise creates a fresh service and
|
||||
* update cache
|
||||
*
|
||||
* @author saifasif
|
||||
*/
|
||||
public final class ServiceLocator {
|
||||
|
||||
|
||||
@@ -34,9 +34,8 @@ import java.util.List;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
/**
|
||||
* Date: 12/29/15 - 19:07 PM
|
||||
* ServiceLocatorTest
|
||||
*
|
||||
* @author Jeroen Meulemeester
|
||||
*/
|
||||
class ServiceLocatorTest {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user