CACHE_STRUCT_DELIMETER);
int structCount = structs.length;
for (int i = 0; i < structCount; i++) {
Properties properties = SemicolonSeparatedPropertiesParser
.parseProperties(structs[i]);
CacheStruct struct = new CacheStruct();
struct.setCacheName(properties.getProperty("cacheName"));
struct.setGroups(properties.getProperty("groups"));
cacheStructList.add(struct);
}
CacheStruct[] cacheStructs = (CacheStruct[]) cacheStructList
.toArray(new CacheStruct[cacheStructList.size()]);