private List<StoreCustomCategoryType> getEbayStoreCategories() {
Map<String, StoreCustomCategoryType> catsMap = new HashMap<String, StoreCustomCategoryType>(30000);
List<StoreCustomCategoryType> catsList = FastList.newInstance();
try {
GetStoreCall call = new GetStoreCall(this.apiContext);
GetStoreRequestType req = new GetStoreRequestType();
GetStoreResponseType resp = null;
resp = (GetStoreResponseType) call.execute(req);
if (resp != null && "SUCCESS".equals(resp.getAck().toString())) {
StoreType store = resp.getStore();
StoreCustomCategoryArrayType categoriesArr = store.getCustomCategories();