Example #1
0
  /**
   * Get the type of the last request processed by the current client.
   *
   * @return Type ID
   */
  public String getRequestClientType() {
    if (m_lastRequest != null) {
      return m_lastRequest.getType().toString();
    }

    return null;
  }
Example #2
0
  /**
   * Get the artifact filename of the last request processed by the current client.
   *
   * @return Artifact filename
   */
  public String getRequestClientFilename() {
    if (m_lastRequest != null) {
      return m_lastRequest.getFilename();
    }

    return null;
  }
Example #3
0
  /**
   * Get the group ID of the last request processed by the current client.
   *
   * @return Group ID
   */
  public String getRequestClientGroupID() {
    if (m_lastRequest != null) {
      return m_lastRequest.getGroupID();
    }

    return null;
  }