Commit 8ecce608 authored by Dimitris Bozelos's avatar Dimitris Bozelos
Browse files

Issue #3257697 Removed MWS authentication token from store settings

parent 4094b257
Loading
Loading
Loading
Loading
+0 −22
Original line number Diff line number Diff line
@@ -130,13 +130,6 @@ class Store extends ConfigEntityBase implements StoreInterface {
   */
  protected $aws_secret_access_key;

  /**
   * The MWS authentication token.
   *
   * @var string
   */
  protected $mws_auth_token;

  /**
   * {@inheritdoc}
   */
@@ -265,19 +258,4 @@ class Store extends ConfigEntityBase implements StoreInterface {
    return $this;
  }

  /**
   * {@inheritdoc}
   */
  public function getMwsAuthToken() {
    return $this->mws_auth_token;
  }

  /**
   * {@inheritdoc}
   */
  public function setMwsAuthToken($mws_auth_token) {
    $this->mws_auth_token = $mws_auth_token;
    return $this;
  }

}
+0 −18
Original line number Diff line number Diff line
@@ -163,22 +163,4 @@ interface StoreInterface extends ConfigEntityInterface, EntityPublishedInterface
   */
  public function setAwsSecretAccessKey($aws_secret_access_key);

  /**
   * Gets the MWS authentication token.
   *
   * @return string
   *   The MWS authentication token.
   */
  public function getMwsAuthToken();

  /**
   * Sets the MWS authentication toke.
   *
   * @param string $mws_auth_token
   *   The MWS authentication token.
   *
   * @return $this
   */
  public function setMwsAuthToken($mws_auth_token);

}