Retrieves and sets the trace configuration settings.
Collection<TraceConfigVO> getTraceConfigs() throws SUPAdminException; void setTraceConfigs(configs) throws SUPAdminException;
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
Collection<TraceConfigVO> configs = supCluster.getTraceConfigs();
for (TraceConfigVO config : configs) {
		if (TRACE_LOG_MODULE.JMS_BRIDGE.equals(config.getModule())) {
			config.setLevel(TRACE_LOG_LEVEL.DEBUG);
		}
}
supCluster.setTraceConfigs(configs);
System.out.println(configs);