Package com.iizix.os
Interface IAdditonalInformation<INFO>
- All Known Implementing Classes:
JakartaEEServer
,JettyRunConfiguration
,RuntimeBuilderServer
,ServerShell
,StandardServer
public interface IAdditonalInformation<INFO>
Additional information to retrieve for history entries.- Author:
- Christopher Mindus
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description INFO
getAdditionalInformation()
Allocates a new instance of the additional information to be stored with the history entry.java.lang.Class<INFO>
getInfoClass()
Gets the class of the additional information.
Method Detail
getInfoClass
java.lang.Class<INFO> getInfoClass()
Gets the class of the additional information.- Returns:
- The Class for additional information, or null for none.
getAdditionalInformation
INFO getAdditionalInformation()
Allocates a new instance of the additional information to be stored with the history entry. If the
returnsgetInfoClass()
null
, this method can also returnnull
.- Returns:
- A new instance of additional information, or null for none.