Class URLTrigger
java.lang.Object
com.infoteria.asteria.flowengine2.thinclient.trigger.Trigger
com.infoteria.asteria.flowengine2.thinclient.trigger.URLTrigger
URL実行設定です。
-
Field Summary
Fields inherited from class com.infoteria.asteria.flowengine2.thinclient.trigger.Trigger
MODE_DEBUG, MODE_HIGH, MODE_NORMAL, MODE_PROFILE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetURL()URLを取得します。booleanisHttp()この実行設定がHttpListener経由で実行できるかどうかを返します。booleanisHttps()この実行設定がHttpsListener経由で実行できるかどうかを返します。voidsetProtocol(boolean bHttp, boolean bHttps) プロトコルを設定します。voidURLを設定します。
URLはキー項目なのでisNew() == falseのインスタンスに対して設定を行うとIllegalArgumentExceptionが発生します。Methods inherited from class com.infoteria.asteria.flowengine2.thinclient.trigger.Trigger
getDescription, getExecuteCount, getExecuteMode, getExecuteUserName, getFlowName, getLastExecuted, getName, getProjectName, getSessionLifetime, getType, isEnabled, isNew, setDescription, setEnabled, setExecuteMode, setExecuteUserName, setFlow, setName, setSessionLifetime, toString
-
Constructor Details
-
URLTrigger
public URLTrigger()実行設定を作成します。
-
-
Method Details
-
setURL
URLを設定します。
URLはキー項目なのでisNew() == falseのインスタンスに対して設定を行うとIllegalArgumentExceptionが発生します。- Throws:
IllegalArgumentException
-
getURL
URLを取得します。 -
setProtocol
public void setProtocol(boolean bHttp, boolean bHttps) プロトコルを設定します。- Parameters:
bHttp- httpでの実行を行う場合はtruebHttps- httpsでの実行を行う場合はtrue
-
isHttp
public boolean isHttp()この実行設定がHttpListener経由で実行できるかどうかを返します。 -
isHttps
public boolean isHttps()この実行設定がHttpsListener経由で実行できるかどうかを返します。
-