Interface MatchmakingApplicationConfigurationService
- All Known Implementing Classes:
SuperUserMatchmakingApplicationConfigurationService
public interface MatchmakingApplicationConfigurationService
-
Method Summary
Modifier and TypeMethodDescriptioncreateApplicationConfiguration
(String applicationNameOrId, MatchmakingApplicationConfiguration matchmakingApplicationConfiguration) Updates an application with the specific name/identifiers.void
deleteApplicationConfiguration
(String applicationNameOrId, String applicationConfigurationNameOrId) Deletes anMatchmakingApplicationConfiguration
using the ID as reference.getApplicationConfiguration
(String applicationNameOrId, String applicationConfigurationNameOrId) Gets an application with the specific name or identifier.updateApplicationConfiguration
(String applicationNameOrId, String applicationConfigurationNameOrId, MatchmakingApplicationConfiguration matchmakingApplicationConfiguration) Updates an application with the specific name/identifiers.
-
Method Details
-
deleteApplicationConfiguration
void deleteApplicationConfiguration(String applicationNameOrId, String applicationConfigurationNameOrId) Deletes anMatchmakingApplicationConfiguration
using the ID as reference.- Parameters:
applicationNameOrId
- theApplication
name or idapplicationConfigurationNameOrId
- theApplicationConfiguration
id
-
getApplicationConfiguration
MatchmakingApplicationConfiguration getApplicationConfiguration(String applicationNameOrId, String applicationConfigurationNameOrId) Gets an application with the specific name or identifier.- Parameters:
applicationNameOrId
- theApplication
name or idapplicationConfigurationNameOrId
- theApplicationConfiguration
id
-
createApplicationConfiguration
MatchmakingApplicationConfiguration createApplicationConfiguration(String applicationNameOrId, MatchmakingApplicationConfiguration matchmakingApplicationConfiguration) Updates an application with the specific name/identifiers.- Parameters:
applicationNameOrId
- theApplication
name or idmatchmakingApplicationConfiguration
- theMatchmakingApplicationConfiguration
object to write- Returns:
- the
MatchmakingApplicationConfiguration
object as it was persisted to the database.
-
updateApplicationConfiguration
MatchmakingApplicationConfiguration updateApplicationConfiguration(String applicationNameOrId, String applicationConfigurationNameOrId, MatchmakingApplicationConfiguration matchmakingApplicationConfiguration) Updates an application with the specific name/identifiers.- Parameters:
applicationNameOrId
- theApplication
name or idapplicationConfigurationNameOrId
- theMatchmakingApplicationConfiguration
idmatchmakingApplicationConfiguration
- theMatchmakingApplicationConfiguration
object to write- Returns:
- the
MatchmakingApplicationConfiguration
object as it was persisted to the database.
-