Interface IApplicationArtifactProvider
-
public interface IApplicationArtifactProvider
The optional application artifact delegate of the application framework.This interface is intended to be implemented and registered by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<IApplicationArtifact>
getArtifacts(Object object)
Returns a list of all found application artifacts for the provided application or application artifact.
-
-
-
Method Detail
-
getArtifacts
List<IApplicationArtifact> getArtifacts(Object object) throws ApplicationException
Returns a list of all found application artifacts for the provided application or application artifact.- Parameters:
object
- the object to get application artifacts for, cannot benull
- Returns:
- a list of all found application artifacts, never
null
- Throws:
ApplicationException
- if method call failed with some reason
-
-