Class GooglePlayApplicationConfigurationResource

java.lang.Object
dev.getelements.elements.rest.application.GooglePlayApplicationConfigurationResource

@Path("application/{applicationNameOrId}/configuration/google_play") public class GooglePlayApplicationConfigurationResource extends Object
Handles the management of GooglePlayApplicationConfiguration instances. Created by patricktwohig on 7/13/15.
  • Constructor Details

    • GooglePlayApplicationConfigurationResource

      public GooglePlayApplicationConfigurationResource()
  • Method Details

    • getGooglePlayApplicationConfiguration

      @GET @Path("{applicationConfigurationNameOrId}") @Produces("application/json") public GooglePlayApplicationConfiguration getGooglePlayApplicationConfiguration(@PathParam("applicationNameOrId") String applicationNameOrId, @PathParam("applicationConfigurationNameOrId") String applicationConfigurationNameOrId)
      Gets the specific GooglePlayApplicationConfiguration instances assocated with the application.
      Parameters:
      applicationNameOrId - the application name or ID
      applicationConfigurationNameOrId - the application profile name or ID
      Returns:
      the GooglePlayApplicationConfiguration instance
    • createGooglePlayApplicationConfiguration

      @POST @Produces("application/json") public GooglePlayApplicationConfiguration createGooglePlayApplicationConfiguration(@PathParam("applicationNameOrId") String applicationNameOrId, GooglePlayApplicationConfiguration googlePlayApplicationConfiguration)
      Creates a new GooglePlayApplicationConfiguration isntance.
      Parameters:
      applicationNameOrId - the applciation name or ID
      googlePlayApplicationConfiguration - the Google Play appliation profile object to creates
      Returns:
      the GooglePlayApplicationConfiguration the Google Play Application Configuration
    • updateGooglePlayApplicationConfiguration

      @PUT @Path("{applicationConfigurationNameOrId}") @Produces("application/json") public GooglePlayApplicationConfiguration updateGooglePlayApplicationConfiguration(@PathParam("applicationNameOrId") String applicationNameOrId, @PathParam("applicationConfigurationNameOrId") String applicationConfigurationNameOrId, GooglePlayApplicationConfiguration googlePlayApplicationConfiguration)
      Updates an existing GooglePlayApplicationConfiguration isntance.
      Parameters:
      applicationNameOrId - the applciation name or ID
      applicationConfigurationNameOrId - the name or identifier of the GooglePlayApplicationConfiguration
      googlePlayApplicationConfiguration - the Google Play application profile object to update
      Returns:
      the GooglePlayApplicationConfiguration the Google Play Application Configuration
    • deleteGooglePlayApplicationConfiguration

      @DELETE @Path("{applicationConfigurationNameOrId}") @Produces("application/json") public void deleteGooglePlayApplicationConfiguration(@PathParam("applicationNameOrId") String applicationNameOrId, @PathParam("applicationConfigurationNameOrId") String applicationConfigurationNameOrId)
      Deletes an instance of GooglePlayApplicationConfiguration.
      Parameters:
      applicationNameOrId - the application ID, or name
      applicationConfigurationNameOrId - the application profile ID, or name
    • getGooglePlayApplicationConfigurationService

      public GooglePlayApplicationConfigurationService getGooglePlayApplicationConfigurationService()
    • setGooglePlayApplicationConfigurationService

      @Inject public void setGooglePlayApplicationConfigurationService(GooglePlayApplicationConfigurationService googlePlayApplicationConfigurationService)