public interface

AspectInstanceFactory

implements Ordered
org.springframework.aop.aspectj.AspectInstanceFactory
Known Indirect Subclasses

Class Overview

Interface implemented to provide an instance of an AspectJ aspect. Decouples from Spring's bean factory.

Extends the Ordered interface to express an order value for the underlying aspect in a chain.

See Also

Summary

[Expand]
Inherited Constants
From interface org.springframework.core.Ordered
Public Methods
abstract ClassLoader getAspectClassLoader()
Expose the aspect class loader that this factory uses.
abstract Object getAspectInstance()
Create an instance of this factory's aspect.
[Expand]
Inherited Methods
From interface org.springframework.core.Ordered

Public Methods

public abstract ClassLoader getAspectClassLoader ()

Expose the aspect class loader that this factory uses.

Returns
  • the aspect class loader (never null)

public abstract Object getAspectInstance ()

Create an instance of this factory's aspect.

Returns
  • the aspect instance (never null)