BudgetOperation budgetOperation = new BudgetOperation();
budgetOperation.setOperand(sharedBudget);
budgetOperation.setOperator(Operator.ADD);
// Add the budget and get the budget ID.
BudgetReturnValue budgetResult = budgetService.mutate(
new BudgetOperation[] {budgetOperation});
Long budgetId = budgetResult.getValue(0).getBudgetId();
// Get the VideoCampaignService.
VideoCampaignServiceInterface videoCampaignService =