How can I set a common drain time for objections raised from any phase?

If I understand the default value for drain_time for uvm_objection is none.

Is there a way to specify/override the default drain time for uvm_objection to a user specified value?

In reply to rmozhiku:

The default value of the drain time is 0 and not none.
You can set the drain time by calling the method set_drain_time on a certain object.
This has to be done befor the simulation starts.
Good phases for setting the drain time are the end_elaboration_phase and the start_of_simulation_phase.