package com.vci.server.portal.delegate;
|
|
import com.vci.common.resource.CommonProperties;
|
|
public class PortalServiceServerDelegateFactory {
|
private static PortalServiceServerDelegateFactory _instance = null;
|
|
public static PortalServiceServerDelegateFactory getInstance(){
|
if(_instance == null){
|
synchronized(PortalServiceServerDelegateFactory.class){
|
if(_instance == null){
|
_instance = new PortalServiceServerDelegateFactory();
|
}
|
}
|
}
|
return _instance;
|
}
|
private PortalServiceServerDelegateFactory(){
|
|
}
|
|
// public PortalServiceServerDelegateInterface getPortalServiceDelegate() {
|
// PortalServiceServerDelegateInterface delegate = null;
|
// delegate = new PortalServiceServerDelegate();
|
//
|
// return delegate;
|
// }
|
}
|