Interface InternalBuildController
-
@Deprecated public interface InternalBuildController
Deprecated.4.4. UseInternalBuildControllerVersion2
instead.DO NOT CHANGE THIS INTERFACE - it is part of the cross-version protocol.
Consumer compatibility: This interface is used by all consumer versions from 1.8-rc-1 to 4.3. It is also used by later consumers when the provider does not implement newer interfaces.
Provider compatibility: This interface is implemented by all provider versions from 1.8-rc-1.
- Since:
- 1.8-rc-1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description BuildResult<?>
getBuildModel()
Deprecated.4.4BuildResult<?>
getModel(java.lang.Object target, ModelIdentifier modelIdentifier)
Deprecated.4.4.
-
-
-
Method Detail
-
getBuildModel
@Deprecated BuildResult<?> getBuildModel() throws BuildExceptionVersion1
Deprecated.4.4Returns the version-specific build model.Consumer compatibility: This method is not used by any consumer versions.
Provider compatibility: This method is implemented by all provider versions from 1.8-rc-1.
- Throws:
BuildExceptionVersion1
- On build failure.- Since:
- 1.8-rc-1
-
getModel
@Deprecated BuildResult<?> getModel(java.lang.Object target, ModelIdentifier modelIdentifier) throws BuildExceptionVersion1, InternalUnsupportedModelException
Deprecated.Returns the requested model for a target object.Consumer compatibility: This method is used by all consumer versions from 1.8-rc-1 to 4.3. It is also used by later consumers when the provider does not implement newer interfaces.
Provider compatibility: This method is implemented by all provider versions from 1.8-rc-1.
- Parameters:
target
- The target object. May be null, in which case a default target is used.modelIdentifier
- The identifier of the model to build.- Throws:
BuildExceptionVersion1
- On build failure.InternalUnsupportedModelException
- When the requested model is not supported.- Since:
- 1.8-rc-1
-
-