Package jadex.bridge.fipa
Class SearchConstraints
- java.lang.Object
-
- jadex.bridge.fipa.SearchConstraints
-
- All Implemented Interfaces:
ISearchConstraints
,java.io.Serializable
public class SearchConstraints extends java.lang.Object implements ISearchConstraints, java.io.Serializable
Java class for concept SearchConstraints of beanynizer_beans_fipa_default ontology.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected int
maxdepth
Attribute for slot max-depth.protected int
maxresults
Attribute for slot max-results.protected java.lang.String
searchid
Attribute for slot search-id.
-
Constructor Summary
Constructors Constructor Description SearchConstraints()
Default Constructor.SearchConstraints(int maxresults, int maxdepth)
Default Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMaxDepth()
Get the max-depth of this SearchConstraints.int
getMaxResults()
Get the max-results of this SearchConstraints.java.lang.String
getSearchId()
Get the search-id of this SearchConstraints.void
setMaxDepth(int maxdepth)
Set the max-depth of this SearchConstraints.void
setMaxResults(int maxresults)
Set the max-results of this SearchConstraints.void
setSearchId(java.lang.String searchid)
Set the search-id of this SearchConstraints.java.lang.String
toString()
Get a string representation of this SearchConstraints.
-
-
-
Method Detail
-
getSearchId
public java.lang.String getSearchId()
Get the search-id of this SearchConstraints.- Specified by:
getSearchId
in interfaceISearchConstraints
- Returns:
- search-id
-
setSearchId
public void setSearchId(java.lang.String searchid)
Set the search-id of this SearchConstraints.- Parameters:
searchid
- the value to be set
-
getMaxResults
public int getMaxResults()
Get the max-results of this SearchConstraints.- Specified by:
getMaxResults
in interfaceISearchConstraints
- Returns:
- max-results
-
setMaxResults
public void setMaxResults(int maxresults)
Set the max-results of this SearchConstraints.- Parameters:
maxresults
- the value to be set
-
getMaxDepth
public int getMaxDepth()
Get the max-depth of this SearchConstraints.- Specified by:
getMaxDepth
in interfaceISearchConstraints
- Returns:
- max-depth
-
setMaxDepth
public void setMaxDepth(int maxdepth)
Set the max-depth of this SearchConstraints.- Parameters:
maxdepth
- the value to be set
-
toString
public java.lang.String toString()
Get a string representation of this SearchConstraints.- Overrides:
toString
in classjava.lang.Object
- Returns:
- The string representation.
-
-