private static final Log log = LogFactory.getLog(UsageSummaryGeneratorClient.class);
public UsageSummaryGeneratorClient(ConfigurationContext configContext) throws Exception{
if (configContext != null) {
try {
meteringStub = new MeteringSummaryGenerationDSStub(configContext, METERING_ENDPOINT);
} catch (AxisFault e) {
String msg = "Error in creating BAM metering stub.";
log.error(msg, e);
throw new Exception(msg, e);
}