package com.vci.client.omd.lifecycle.pubimpl;
|
|
import java.util.ArrayList;
|
|
import com.vci.client.omd.lifecycle.itf.InterLCy;
|
|
public class InterLCyManager {
|
private static InterLCyManager interManager= null;
|
private ArrayList<InterLCy> interLCyList = new ArrayList<InterLCy>();
|
|
private InterLCyManager(){
|
|
}
|
|
public static InterLCyManager getInstance(){
|
if(interManager == null){
|
interManager = new InterLCyManager();
|
}
|
return interManager;
|
}
|
|
public void registerInter(InterLCy interLCy){
|
interLCyList.add(interLCy);
|
}
|
|
public ArrayList<InterLCy> getInterLCyList(){
|
return interLCyList;
|
}
|
}
|