com.genesyslab.omsdk.mil
Interface MILUCSFindCondition


public interface MILUCSFindCondition

Defines criteria for finding interactions in UCS.

To get a MILUCSFindCondition, call the MILUCSManager#createFindCondition() as shown here:

MILUCSFindCondition milFindCondition =
    createFindCondition(MILUCSInteractionStatus.IN_PROCESS, "Inbound", "thirdPartyMedia");

The parameters passed at creation are mandatory parameters. You can set additional parameters for refining your search:

Since:
7.1.007.00

Method Summary
 java.lang.String getMediaType()
          Returns the media type of interactions to be found.
 MILUCSInteractionStatus getStatus()
          Returns the status of interactions to be found.
 java.lang.String getSubmittedBy()
          Returns the submittedBy parameter for interactions to be found.
 java.lang.String getSubtype()
          Returns the subtype of interactions to be found.
 java.lang.String getType()
          Returns the type of interactions to be found.
 void setMediaType(java.lang.String mediaType)
          Sets the media type of interactions to be found.
 void setStatus(MILUCSInteractionStatus status)
          Sets the status of interactions to be found
 void setSubmittedBy(java.lang.String submittedBy)
          Sets the submittedBy parameter for interactions to be found.
 void setSubtype(java.lang.String subType)
          Sets the subtype of interactions to be found.
 void setType(java.lang.String type)
          Sets the type of interactions to be found.
 

Method Detail

getStatus

public MILUCSInteractionStatus getStatus()
Returns the status of interactions to be found.

Returns:
the status of interactions to be found.

setStatus

public void setStatus(MILUCSInteractionStatus status)
Sets the status of interactions to be found

Parameters:
status - the status of interactions to be found.

getType

public java.lang.String getType()
Returns the type of interactions to be found.

Returns:
the type of interactions to be found.

setType

public void setType(java.lang.String type)
Sets the type of interactions to be found.

Parameters:
type - type of interactions to be found.

getSubtype

public java.lang.String getSubtype()
Returns the subtype of interactions to be found.

Returns:
the subtype of interactions to be found.

setSubtype

public void setSubtype(java.lang.String subType)
Sets the subtype of interactions to be found.

Parameters:
subType - the subtype of interactions to be found.

getMediaType

public java.lang.String getMediaType()
Returns the media type of interactions to be found.

Returns:
the status of interactions to be found.

setMediaType

public void setMediaType(java.lang.String mediaType)
Sets the media type of interactions to be found.

Parameters:
mediaType - the media type of interactions to be found

getSubmittedBy

public java.lang.String getSubmittedBy()
Returns the submittedBy parameter for interactions to be found.

Returns:
parameter for applications to be found.

setSubmittedBy

public void setSubmittedBy(java.lang.String submittedBy)
Sets the submittedBy parameter for interactions to be found.

This parameter specifies which genesys application submitted the wanted interactions.

Parameters:
submittedBy - parameter for applications to be found.