Package tigase.xmpp.mam
Interface Query
-
- All Known Implementing Classes:
QueryImpl
public interface QueryInterface defining methods required by base version MAMRepository to execute queries. Custom implementations of MAMRepository may use additional methods.
Created by andrzej on 19.07.2016.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JIDgetComponentJID()DategetEnd()StringgetId()JIDgetQuestionerJID()RSMgetRsm()DategetStart()JIDgetWith()voidsetComponentJID(JID componentJID)voidsetEnd(Date end)voidsetId(String id)voidsetQuestionerJID(JID questionerJID)voidsetStart(Date start)voidsetWith(JID with)
-
-
-
Method Detail
-
getQuestionerJID
JID getQuestionerJID()
-
setQuestionerJID
void setQuestionerJID(JID questionerJID)
-
getComponentJID
JID getComponentJID()
-
setComponentJID
void setComponentJID(JID componentJID)
-
getId
String getId()
-
setId
void setId(String id)
-
getStart
Date getStart()
-
setStart
void setStart(Date start)
-
getEnd
Date getEnd()
-
setEnd
void setEnd(Date end)
-
getWith
JID getWith()
-
setWith
void setWith(JID with)
-
getRsm
RSM getRsm()
-
-