Class CometSearchMethod
- java.lang.Object
-
- com.priint.pubserver.comet.bridge.CometSearchMethod
-
- All Implemented Interfaces:
java.io.Serializable
public class CometSearchMethod extends java.lang.Object implements java.io.SerializableThe CometSearchMethod class is used to provide information about available search methods to client applications, such as the ISON Eclipse client.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CometSearchMethod()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAdditionalInfo()Gets additional information for this search method.java.lang.StringgetIdentifier()Gets the identifier of this search method.java.lang.StringgetLabel()Gets the label of this search methodbooleanisEnabled()Gets, whether this search method is enabled or not.voidsetAdditionalInfo(java.lang.String additionalInfo)Sets additional information for this search method.voidsetEnabled(boolean enabled)Enables or disables this search method.voidsetIdentifier(java.lang.String identifier)Sets identifier of this search method.voidsetLabel(java.lang.String label)Sets the label of this search method
-
-
-
Method Detail
-
getLabel
public java.lang.String getLabel()
Gets the label of this search method
- Returns:
- label
-
setLabel
public void setLabel(java.lang.String label)
Sets the label of this search method
- Parameters:
label- the label
-
getAdditionalInfo
public java.lang.String getAdditionalInfo()
Gets additional information for this search method.
- Returns:
- additional information
-
setAdditionalInfo
public void setAdditionalInfo(java.lang.String additionalInfo)
Sets additional information for this search method.
- Parameters:
additionalInfo- the additional information
-
getIdentifier
public java.lang.String getIdentifier()
Gets the identifier of this search method.
- Returns:
- identifier
-
setIdentifier
public void setIdentifier(java.lang.String identifier)
Sets identifier of this search method.
- Parameters:
identifier- the identifier
-
isEnabled
public boolean isEnabled()
Gets, whether this search method is enabled or not.
- Returns:
- true, if enabled, false otherwise
-
setEnabled
public void setEnabled(boolean enabled)
Enables or disables this search method.
- Parameters:
enabled- true, if enabled, false otherwise
-
-