public class SimpleQuery
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
SimpleQuery()
Special use: information exchange over web.Should not be used for other purposes.
|
SimpleQuery(java.util.List<java.lang.String> operationNames,
java.lang.String RQs)
Creates a complete SimpleQuery object.
|
Modifier and Type | Method and Description |
---|---|
void |
checkWellFormedNess()
Checks whether the SimpleQuery object is well-formed or not.
|
java.util.List<java.lang.String> |
getOperationNames()
Special use: information exchange over web.Should not be used for other purposes.
|
java.lang.String |
getRQs()
Special use: information exchange over web.Should not be used for other purposes.
|
void |
setOperationNames(java.util.List<java.lang.String> operationNames)
Special use: information exchange over web.Should not be used for other purposes.
|
void |
setRQs(java.lang.String RQs)
Special use: information exchange over web.Should not be used for other purposes.
|
public SimpleQuery(java.util.List<java.lang.String> operationNames, java.lang.String RQs)
checkWellFormedNess()
operationNames
- A list of names of service operations.RQs
- Requirements of dependencies on other services.Requirements are separated by commas.public SimpleQuery()
public java.util.List<java.lang.String> getOperationNames()
public java.lang.String getRQs()
public void setOperationNames(java.util.List<java.lang.String> operationNames)
operationNames
- A list of names of service operations.public void setRQs(java.lang.String RQs)
RQs
- Requirements of dependencies on other services.public void checkWellFormedNess() throws QueryEngineFacadeException
Checks whether the SimpleQuery object is well-formed or not. If the SimpleQuery object is not well-formed, an exception is thrown. Well-formedness rules: The list of names of service operations must not be null or empty.
QueryEngineFacadeException
- If the SimpleQuery object is not well-formed.