probCapacity = Integer.valueOf(probCapacity.intValue() + shift.getLotacao().intValue());
} else if (shift.containsType(ShiftType.FIELD_WORK)) {
fieldCapacity = Integer.valueOf(fieldCapacity.intValue() + shift.getLotacao().intValue());
} else if (shift.containsType(ShiftType.TRAINING_PERIOD)) {
trainCapacity = Integer.valueOf(trainCapacity.intValue() + shift.getLotacao().intValue());
} else if (shift.containsType(ShiftType.TUTORIAL_ORIENTATION)) {
tutCapacity = Integer.valueOf(tutCapacity.intValue() + shift.getLotacao().intValue());
}