Class CallerImplementation
- java.lang.Object
-
- com.djrapitops.plan.extension.implementation.CallerImplementation
-
-
Constructor Summary
Constructors Constructor Description CallerImplementation(ProviderValueGatherer gatherer, ExtensionSvc extensionService, Processing processing)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
updatePlayerData(java.util.UUID playerUUID, java.lang.String playerName)
Calls all player methods of the associatedDataExtension
.void
updateServerData()
Calls all server methods of the associatedDataExtension
.
-
-
-
Constructor Detail
-
CallerImplementation
public CallerImplementation(ProviderValueGatherer gatherer, ExtensionSvc extensionService, Processing processing)
-
-
Method Detail
-
updatePlayerData
public void updatePlayerData(java.util.UUID playerUUID, java.lang.String playerName)
Description copied from interface:Caller
Calls all player methods of the associatedDataExtension
.Player methods have
UUID
orString
as a method parameter and a Provider annotation.- Specified by:
updatePlayerData
in interfaceCaller
- Parameters:
playerUUID
- UUID of the player.playerName
- Name of the player.
-
updateServerData
public void updateServerData()
Description copied from interface:Caller
Calls all server methods of the associatedDataExtension
.Server methods have no parameters or
Group
method parameter and a Provider annotation.- Specified by:
updateServerData
in interfaceCaller
-
-