/** * Method creates an instance of EzeAPI with the given API configuration settings */ public static EzeAPI create() { if (null == API) { API = new EzeAPI(); } return(API); }
/** * Method creates an instance of EzeAPI with the given API configuration settings */ public static EzeAPI create() { if (null == API) { API = new EzeAPI(); } return API; }
/** * Method creates an instance of EzeAPI with the given API configuration settings */ public static EzeAPI create(ServerType serverType) { if (null == API) { API = new EzeAPI(); API.initialize(); } API.setServerType(serverType); return API; }