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.voiddeleteApplicationConfiguration(String applicationNameOrId, String applicationConfigurationNameOrId) Deletes anMatchmakingApplicationConfigurationusing 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 anMatchmakingApplicationConfigurationusing the ID as reference.- Parameters:
applicationNameOrId- theApplicationname or idapplicationConfigurationNameOrId- theApplicationConfigurationid
-
getApplicationConfiguration
MatchmakingApplicationConfiguration getApplicationConfiguration(String applicationNameOrId, String applicationConfigurationNameOrId) Gets an application with the specific name or identifier.- Parameters:
applicationNameOrId- theApplicationname or idapplicationConfigurationNameOrId- theApplicationConfigurationid
-
createApplicationConfiguration
MatchmakingApplicationConfiguration createApplicationConfiguration(String applicationNameOrId, MatchmakingApplicationConfiguration matchmakingApplicationConfiguration) Updates an application with the specific name/identifiers.- Parameters:
applicationNameOrId- theApplicationname or idmatchmakingApplicationConfiguration- theMatchmakingApplicationConfigurationobject to write- Returns:
- the
MatchmakingApplicationConfigurationobject 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- theApplicationname or idapplicationConfigurationNameOrId- theMatchmakingApplicationConfigurationidmatchmakingApplicationConfiguration- theMatchmakingApplicationConfigurationobject to write- Returns:
- the
MatchmakingApplicationConfigurationobject as it was persisted to the database.
-