private void handleUnsubscribe()

in amazon-sns-trigger-server/src/main/java/jetbrains/buildServer/clouds/amazon/sns/trigger/controllers/AwsSnsHttpEndpointController.java [172:178]


  private void handleUnsubscribe(@NotNull CustomDataStorageWrapper cds) {
    // cleanup
    cds.putValue(AwsSnsTriggerConstants.TRIGGER_STORE_CURRENT_SUBSCRIPTION_ARN, null);
    cds.putValue(AwsSnsTriggerConstants.TRIGGER_STORE_CURRENT_TOPIC_ARN, null);
    cds.putValue(AwsSnsTriggerConstants.TRIGGER_STORE_CURRENT_UNSUBSCRIBE_URL, null);
    cds.putValue(AwsSnsTriggerConstants.TRIGGER_STORE_MESSAGES, null);
  }