SPRNET-1089

This commit is contained in:
markpollack
2009-07-28 06:01:38 +00:00
parent 865ae0fb86
commit d536699632

View File

@@ -132,14 +132,6 @@ namespace Spring.Messaging.Listener
#endregion
/// <summary>
/// Validates the configuration of this container
/// The default implementation is empty. To be overridden in subclasses.
/// </summary>
protected virtual void ValidateConfiguration()
{
}
#region IDisposable Members
/// <summary>
@@ -152,6 +144,14 @@ namespace Spring.Messaging.Listener
#endregion
/// <summary>
/// Validates the configuration of this container
/// The default implementation is empty. To be overridden in subclasses.
/// </summary>
protected virtual void ValidateConfiguration()
{
}
/// <summary>
/// Initializes this container. Calls the abstract method <see cref="DoInitialize"/> to
/// initialize the listening infrastructure (i.e. subclasses will typically
@@ -220,7 +220,7 @@ namespace Spring.Messaging.Listener
/// <summary>
/// Template method suitable for overriding that stops the container.
/// </summary>
public virtual void DoStop()
protected virtual void DoStop()
{
lock (lifecycleMonitor)
{