private static void buildAllProfiles() {
if (_allProfiles == null) {
ArrayList allProfiles =
new ArrayList();
CswProfiles cswProfiles = new CswProfiles();
try {
cswProfiles.loadProfilefromConfig();
Collection<CswProfile> profiles = cswProfiles.getProfilesAsCollection();
for (CswProfile profile : profiles) {
String id = profile.getId();
String name = profile.getName();
if (id.length() > 0) {
if (name.length() == 0) {