All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.testsmith.cdt.protocol.events.page.DownloadWillBegin Maven / Gradle / Ivy

The newest version!
package com.github.testsmith.cdt.protocol.events.page;

/*-
 * #%L
 * cdt-java-client
 * %%
 * Copyright (C) 2018 - 2024 Kenan Klisura
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import com.github.testsmith.cdt.protocol.support.annotations.Experimental;

/**
 * Fired when page is about to start a download. Deprecated. Use Browser.downloadWillBegin instead.
 *
 * @author roy
 * @version $Id: $Id
 */
@Experimental
@Deprecated
public class DownloadWillBegin {

  private String frameId;

  private String guid;

  private String url;

  private String suggestedFilename;

  /**
   * Id of the frame that caused download to begin.
   *
   * @return a {@link java.lang.String} object
   */
  public String getFrameId() {
    return frameId;
  }

  /**
   * Id of the frame that caused download to begin.
   *
   * @param frameId a {@link java.lang.String} object
   */
  public void setFrameId(String frameId) {
    this.frameId = frameId;
  }

  /**
   * Global unique identifier of the download.
   *
   * @return a {@link java.lang.String} object
   */
  public String getGuid() {
    return guid;
  }

  /**
   * Global unique identifier of the download.
   *
   * @param guid a {@link java.lang.String} object
   */
  public void setGuid(String guid) {
    this.guid = guid;
  }

  /**
   * URL of the resource being downloaded.
   *
   * @return a {@link java.lang.String} object
   */
  public String getUrl() {
    return url;
  }

  /**
   * URL of the resource being downloaded.
   *
   * @param url a {@link java.lang.String} object
   */
  public void setUrl(String url) {
    this.url = url;
  }

  /**
   * Suggested file name of the resource (the actual name of the file saved on disk may differ).
   *
   * @return a {@link java.lang.String} object
   */
  public String getSuggestedFilename() {
    return suggestedFilename;
  }

  /**
   * Suggested file name of the resource (the actual name of the file saved on disk may differ).
   *
   * @param suggestedFilename a {@link java.lang.String} object
   */
  public void setSuggestedFilename(String suggestedFilename) {
    this.suggestedFilename = suggestedFilename;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy