Class TestRequestContext

java.lang.Object
org.iplass.mtp.test.TestRequestContext
All Implemented Interfaces:
RequestContext

public class TestRequestContext extends Object implements RequestContext
テスト時に利用可能なRequestContextの実装です。 パラメータなどを明示的にセット可能です。
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected Map<String,Object>
     
    protected SessionContext
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    サーバサイドでリクエストスコープで保持している属性を取得します。 (HttpServletRequestのgetAttribute相当)
    属性の名前の一覧をIteratorで取得します。
    クライアントからの呼び出しパラメータを取得。 (HttpServletRequestのgetParameter相当)
    <T> T
    getParam(String name, Class<T> type)
    クライアントからの呼び出しパラメータを指定の型として取得します。 typeにはプリミティブ側のラッパークラス、String、BigDecimal、SelectValue、 java.sql.Date、Timestamp、Timeを指定可能です。
    クライアントからの呼び出しパラメータをBigDecimal型として取得します。 new BigDecimal(String)で変換します。
    クライアントからの呼び出しパラメータをBoolean型として取得します。 Boolean.valueOf(String)で変換します。
    getParamAsDate(String name, String format)
    クライアントからの呼び出しパラメータをjava.sql.Date型として取得します。 値の文字列のフォーマットはformatで指定します。
    クライアントからの呼び出しパラメータをDouble型として取得します。 Double.valueOf(String)で変換します。
    ファイルを添付してPOST(multipart/form-data)された場合、アップロードされたファイルを取得可能です。
    クライアントからの呼び出しパラメータをInteger型として取得します。 Integer.valueOf(String)で変換します。
    クライアントからの呼び出しパラメータをLong型として取得します。 Long.valueOf(String)で変換します。
    getParamAsTime(String name, String format)
    クライアントからの呼び出しパラメータをTime型として取得します。 値の文字列のフォーマットはformatで指定します。
    クライアントからの呼び出しパラメータをTimestamp型として取得します。 値の文字列のフォーマットはformatで指定します。
    パラメータをMap形式で取得します。
    パラメータ名の一覧のIteratorを取得します。
    クライアントからの呼び出しパラメータ(複数) を取得します。 (HttpServletRequestのgetParameterValues相当)
    <T> T[]
    getParams(String name, Class<T> type)
    クライアントからの呼び出しパラメータを指定の型の配列として取得します。 typeにはプリミティブ側のラッパークラス、String、BigDecimal、SelectValue、 java.sql.Date、Timestamp、Timeを指定可能です。
    クライアントからの呼び出しパラメータをBigDecimal型配列として取得します。 new BigDecimal(String)で変換します。
    クライアントからの呼び出しパラメータをBoolean型配列として取得します。 Boolean.valueOf(String)で変換します。
    getParamsAsDate(String name, String format)
    クライアントからの呼び出しパラメータをjava.sql.Date型配列として取得します。 値の文字列のフォーマットはformatで指定します。
    クライアントからの呼び出しパラメータをDouble型配列として取得します。 Double.valueOf(String)で変換します。
    ファイルを添付してPOST(multipart/form-data)された場合、アップロードされたファイルを取得可能です。 同一名称で複数件のファイルがアップされた場合、こちらを利用可能です。
    クライアントからの呼び出しパラメータをInteger型配列として取得します。 Integer.valueOf(String)で変換します。
    クライアントからの呼び出しパラメータをLong型配列として取得します。 Long.valueOf(String)で変換します。
    getParamsAsTime(String name, String format)
    クライアントからの呼び出しパラメータをTime型配列として取得します。 値の文字列のフォーマットはformatで指定します。
    クライアントからの呼び出しパラメータをTimestamp型配列として取得します。 値の文字列のフォーマットはformatで指定します。
    クライアントのセッションオブジェクトを取得します。 セッションオブジェクトが存在しなかったら新規に作成して返します。 getSession(true)呼び出しと同等。
    getSession(boolean create)
    クライアントのセッションオブジェクトを取得します。
    void
    指定のnameの属性を削除します。 setAttribute(name, null)と同義
    void
    setAttribute(String name, Object value)
    サーバサイドでリクエストスコープで属性を保持します。 (HttpServletRequestのsetAttribute相当)
    void
    HTTPリクエストのヘッダーをセットします。
    void
    setHttpServletRequest(jakarta.servlet.http.HttpServletRequest httpRequest)
    指定のHttpServletRequestのインスタンスをセットします。 HttpServletRequest#getHeaderNames()が値を返す場合、 HTTPリクエストヘッダーも同時にセットします。
    void
    setParam(String name, Object value)
    指定のnameでリクエストパラメータをセットします。
    void
    ResponseHeaderをセットします。

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.iplass.mtp.command.RequestContext

    getParam, getParams
  • Field Details

  • Constructor Details

    • TestRequestContext

      public TestRequestContext()
  • Method Details

    • setHttpServletRequest

      public void setHttpServletRequest(jakarta.servlet.http.HttpServletRequest httpRequest)
      指定のHttpServletRequestのインスタンスをセットします。 HttpServletRequest#getHeaderNames()が値を返す場合、 HTTPリクエストヘッダーも同時にセットします。
      Parameters:
      httpRequest -
    • setHttpRequestHeader

      public void setHttpRequestHeader(String name, Object value)
      HTTPリクエストのヘッダーをセットします。
      Parameters:
      name -
      value -
    • setResponseHeader

      public void setResponseHeader(ResponseHeader responseHeader)
      ResponseHeaderをセットします。
      Parameters:
      responseHeader -
    • setParam

      public void setParam(String name, Object value)
      指定のnameでリクエストパラメータをセットします。
      Parameters:
      name -
      value -
    • getParam

      public String getParam(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータを取得。 (HttpServletRequestのgetParameter相当)
      Specified by:
      getParam in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParams

      public String[] getParams(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータ(複数) を取得します。 (HttpServletRequestのgetParameterValues相当)
      Specified by:
      getParams in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParam

      public <T> T getParam(String name, Class<T> type)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータを指定の型として取得します。 typeにはプリミティブ側のラッパークラス、String、BigDecimal、SelectValue、 java.sql.Date、Timestamp、Timeを指定可能です。
      Specified by:
      getParam in interface RequestContext
      Parameters:
      name -
      type -
      Returns:
    • getParams

      public <T> T[] getParams(String name, Class<T> type)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータを指定の型の配列として取得します。 typeにはプリミティブ側のラッパークラス、String、BigDecimal、SelectValue、 java.sql.Date、Timestamp、Timeを指定可能です。
      Specified by:
      getParams in interface RequestContext
      Parameters:
      name -
      type -
      Returns:
    • getParamAsDate

      public Date getParamAsDate(String name, String format)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをjava.sql.Date型として取得します。 値の文字列のフォーマットはformatで指定します。
      Specified by:
      getParamAsDate in interface RequestContext
      Parameters:
      name -
      format -
      Returns:
    • getParamsAsDate

      public Date[] getParamsAsDate(String name, String format)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをjava.sql.Date型配列として取得します。 値の文字列のフォーマットはformatで指定します。
      Specified by:
      getParamsAsDate in interface RequestContext
      Parameters:
      name -
      format -
      Returns:
    • getParamAsTimestamp

      public Timestamp getParamAsTimestamp(String name, String format)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをTimestamp型として取得します。 値の文字列のフォーマットはformatで指定します。
      Specified by:
      getParamAsTimestamp in interface RequestContext
      Parameters:
      name -
      format -
      Returns:
    • getParamsAsTimestamp

      public Timestamp[] getParamsAsTimestamp(String name, String format)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをTimestamp型配列として取得します。 値の文字列のフォーマットはformatで指定します。
      Specified by:
      getParamsAsTimestamp in interface RequestContext
      Parameters:
      name -
      format -
      Returns:
    • getParamAsTime

      public Time getParamAsTime(String name, String format)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをTime型として取得します。 値の文字列のフォーマットはformatで指定します。
      Specified by:
      getParamAsTime in interface RequestContext
      Parameters:
      name -
      format -
      Returns:
    • getParamsAsTime

      public Time[] getParamsAsTime(String name, String format)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをTime型配列として取得します。 値の文字列のフォーマットはformatで指定します。
      Specified by:
      getParamsAsTime in interface RequestContext
      Parameters:
      name -
      format -
      Returns:
    • getParamAsBigDecimal

      public BigDecimal getParamAsBigDecimal(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをBigDecimal型として取得します。 new BigDecimal(String)で変換します。
      Specified by:
      getParamAsBigDecimal in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamsAsBigDecimal

      public BigDecimal[] getParamsAsBigDecimal(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをBigDecimal型配列として取得します。 new BigDecimal(String)で変換します。
      Specified by:
      getParamsAsBigDecimal in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamAsInt

      public Integer getParamAsInt(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをInteger型として取得します。 Integer.valueOf(String)で変換します。
      Specified by:
      getParamAsInt in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamsAsInt

      public Integer[] getParamsAsInt(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをInteger型配列として取得します。 Integer.valueOf(String)で変換します。
      Specified by:
      getParamsAsInt in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamAsBoolean

      public Boolean getParamAsBoolean(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをBoolean型として取得します。 Boolean.valueOf(String)で変換します。
      Specified by:
      getParamAsBoolean in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamsAsBoolean

      public Boolean[] getParamsAsBoolean(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをBoolean型配列として取得します。 Boolean.valueOf(String)で変換します。
      Specified by:
      getParamsAsBoolean in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamAsDouble

      public Double getParamAsDouble(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをDouble型として取得します。 Double.valueOf(String)で変換します。
      Specified by:
      getParamAsDouble in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamsAsDouble

      public Double[] getParamsAsDouble(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをDouble型配列として取得します。 Double.valueOf(String)で変換します。
      Specified by:
      getParamsAsDouble in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamAsFile

      public UploadFileHandle getParamAsFile(String name)
      Description copied from interface: RequestContext
      ファイルを添付してPOST(multipart/form-data)された場合、アップロードされたファイルを取得可能です。
      Specified by:
      getParamAsFile in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamsAsFile

      public UploadFileHandle[] getParamsAsFile(String name)
      Description copied from interface: RequestContext
      ファイルを添付してPOST(multipart/form-data)された場合、アップロードされたファイルを取得可能です。 同一名称で複数件のファイルがアップされた場合、こちらを利用可能です。
      Specified by:
      getParamsAsFile in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamAsLong

      public Long getParamAsLong(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをLong型として取得します。 Long.valueOf(String)で変換します。
      Specified by:
      getParamAsLong in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamsAsLong

      public Long[] getParamsAsLong(String name)
      Description copied from interface: RequestContext
      クライアントからの呼び出しパラメータをLong型配列として取得します。 Long.valueOf(String)で変換します。
      Specified by:
      getParamsAsLong in interface RequestContext
      Parameters:
      name -
      Returns:
    • getParamMap

      public Map<String,Object> getParamMap()
      Description copied from interface: RequestContext
      パラメータをMap形式で取得します。
      Specified by:
      getParamMap in interface RequestContext
      Returns:
    • getParamNames

      public Iterator<String> getParamNames()
      Description copied from interface: RequestContext
      パラメータ名の一覧のIteratorを取得します。
      Specified by:
      getParamNames in interface RequestContext
      Returns:
    • getAttribute

      public Object getAttribute(String name)
      Description copied from interface: RequestContext
      サーバサイドでリクエストスコープで保持している属性を取得します。 (HttpServletRequestのgetAttribute相当)
      Specified by:
      getAttribute in interface RequestContext
      Parameters:
      name -
      Returns:
    • setAttribute

      public void setAttribute(String name, Object value)
      Description copied from interface: RequestContext
      サーバサイドでリクエストスコープで属性を保持します。 (HttpServletRequestのsetAttribute相当)
      Specified by:
      setAttribute in interface RequestContext
      Parameters:
      name -
      value -
    • removeAttribute

      public void removeAttribute(String name)
      Description copied from interface: RequestContext
      指定のnameの属性を削除します。 setAttribute(name, null)と同義
      Specified by:
      removeAttribute in interface RequestContext
      Parameters:
      name -
    • getAttributeNames

      public Iterator<String> getAttributeNames()
      Description copied from interface: RequestContext
      属性の名前の一覧をIteratorで取得します。
      Specified by:
      getAttributeNames in interface RequestContext
      Returns:
    • getSession

      public SessionContext getSession()
      Description copied from interface: RequestContext
      クライアントのセッションオブジェクトを取得します。 セッションオブジェクトが存在しなかったら新規に作成して返します。 getSession(true)呼び出しと同等。
      Specified by:
      getSession in interface RequestContext
      Returns:
    • getSession

      public SessionContext getSession(boolean create)
      Description copied from interface: RequestContext
      クライアントのセッションオブジェクトを取得します。
      Specified by:
      getSession in interface RequestContext
      Parameters:
      create - trueの場合、セッションオブジェクトが存在しなかったら新規に作成して返す
      Returns: