Package org.bedework.synch.wsmessages
Class ActiveSubscriptionRequestType
- java.lang.Object
-
- org.bedework.synch.wsmessages.BaseSynchRequestType
-
- org.bedework.synch.wsmessages.ActiveSubscriptionRequestType
-
- Direct Known Subclasses:
SubscriptionStatusRequestType,UnsubscribeRequestType
public class ActiveSubscriptionRequestType extends BaseSynchRequestType
Messages involving active subscriptions. These need to provide all the information for a given end of the subscription which would usually be the end that made the subscription in the first place. It's up to the connector to determine if enough information has been supplied to allow the requests to proceed.Java class for ActiveSubscriptionRequestType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ActiveSubscriptionRequestType"> <complexContent> <extension base="{http://www.bedework.org/synch/wsmessages}BaseSynchRequestType"> <sequence> <element name="token" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="principalHref" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="subscription-id" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="end" type="{http://www.bedework.org/synch/wsmessages}SynchEndType"/> <element name="connectorInfo" type="{http://www.bedework.org/synch/wsmessages}ConnectorInfoType"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected ConnectorInfoTypeconnectorInfoprotected SynchEndTypeendprotected StringprincipalHrefprotected StringsubscriptionIdprotected Stringtoken
-
Constructor Summary
Constructors Constructor Description ActiveSubscriptionRequestType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConnectorInfoTypegetConnectorInfo()Gets the value of the connectorInfo property.SynchEndTypegetEnd()Gets the value of the end property.StringgetPrincipalHref()Gets the value of the principalHref property.StringgetSubscriptionId()Gets the value of the subscriptionId property.StringgetToken()Gets the value of the token property.voidsetConnectorInfo(ConnectorInfoType value)Sets the value of the connectorInfo property.voidsetEnd(SynchEndType value)Sets the value of the end property.voidsetPrincipalHref(String value)Sets the value of the principalHref property.voidsetSubscriptionId(String value)Sets the value of the subscriptionId property.voidsetToken(String value)Sets the value of the token property.
-
-
-
Field Detail
-
token
protected String token
-
principalHref
protected String principalHref
-
subscriptionId
protected String subscriptionId
-
end
protected SynchEndType end
-
connectorInfo
protected ConnectorInfoType connectorInfo
-
-
Method Detail
-
getToken
public String getToken()
Gets the value of the token property.- Returns:
- possible object is
String
-
setToken
public void setToken(String value)
Sets the value of the token property.- Parameters:
value- allowed object isString
-
getPrincipalHref
public String getPrincipalHref()
Gets the value of the principalHref property.- Returns:
- possible object is
String
-
setPrincipalHref
public void setPrincipalHref(String value)
Sets the value of the principalHref property.- Parameters:
value- allowed object isString
-
getSubscriptionId
public String getSubscriptionId()
Gets the value of the subscriptionId property.- Returns:
- possible object is
String
-
setSubscriptionId
public void setSubscriptionId(String value)
Sets the value of the subscriptionId property.- Parameters:
value- allowed object isString
-
getEnd
public SynchEndType getEnd()
Gets the value of the end property.- Returns:
- possible object is
SynchEndType
-
setEnd
public void setEnd(SynchEndType value)
Sets the value of the end property.- Parameters:
value- allowed object isSynchEndType
-
getConnectorInfo
public ConnectorInfoType getConnectorInfo()
Gets the value of the connectorInfo property.- Returns:
- possible object is
ConnectorInfoType
-
setConnectorInfo
public void setConnectorInfo(ConnectorInfoType value)
Sets the value of the connectorInfo property.- Parameters:
value- allowed object isConnectorInfoType
-
-