package net.java.slee.resource.diameter.base.events; import net.java.slee.resource.diameter.base.events.avp.DiameterIdentity; import net.java.slee.resource.diameter.base.events.avp.DiameterURI; import net.java.slee.resource.diameter.base.events.avp.FailedAvp; import net.java.slee.resource.diameter.base.events.avp.ProxyInfoAvp; import net.java.slee.resource.diameter.base.events.avp.RedirectHostUsageType; /** * Defines an interface representing the Session-Termination-Answer command. * * From the Diameter Base Protocol (rfc3588.txt) specification: * * <pre> * 8.4.2. Session-Termination-Answer * * The Session-Termination-Answer (STA), indicated by the Command-Code * set to 275 and the message flags' 'R' bit clear, is sent by the * Diameter Server to acknowledge the notification that the session has * been terminated. The Result-Code AVP MUST be present, and MAY * contain an indication that an error occurred while servicing the STR. * * Upon sending or receipt of the STA, the Diameter Server MUST release * all resources for the session indicated by the Session-Id AVP. Any * intermediate server in the Proxy-Chain MAY also release any * resources, if necessary. * * Message Format * * <Session-Termination-Answer> ::= < Diameter Header: 275, PXY > * < Session-Id > * { Result-Code } * { Origin-Host } * { Origin-Realm } * [ User-Name ] * * [ Class ] * [ Error-Message ] * [ Error-Reporting-Host ] * * [ Failed-AVP ] * [ Origin-State-Id ] * * [ Redirect-Host ] * [ Redirect-Host-Usage ] * [ Redirect-Max-Cache-Time ] * * [ Proxy-Info ] * * [ AVP ] * </pre> */ public interface SessionTerminationAnswer extends DiameterMessage { static final int commandCode = 275; /** * Returns true if the Result-Code AVP is present in the message. */ boolean hasResultCode(); /** * Returns the value of the Result-Code AVP, of type Unsigned32. Use * {@link #hasResultCode()} to check the existence of this AVP. * * @return the value of the Result-Code AVP * @throws IllegalStateException * if the Result-Code AVP has not been set on this message */ long getResultCode(); /** * Sets the value of the Result-Code AVP, of type Unsigned32. * * @throws IllegalStateException * if setResultCode has already been called */ void setResultCode(long resultCode); /** * Returns true if the Error-Message AVP is present in the message. */ boolean hasErrorMessage(); /** * Returns the value of the Error-Message AVP, of type UTF8String. * * @return the value of the Error-Message AVP or null if it has not been set * on this message */ String getErrorMessage(); /** * Sets the value of the Error-Message AVP, of type UTF8String. * * @throws IllegalStateException * if setErrorMessage has already been called */ void setErrorMessage(String errorMessage); /** * Returns true if the Error-Reporting-Host AVP is present in the message. */ boolean hasErrorReportingHost(); /** * Returns the value of the Error-Reporting-Host AVP, of type * DiameterIdentity. * * @return the value of the Error-Reporting-Host AVP or null if it has not * been set on this message */ DiameterIdentity getErrorReportingHost(); /** * Sets the value of the Error-Reporting-Host AVP, of type DiameterIdentity. * * @throws IllegalStateException * if setErrorReportingHost has already been called */ void setErrorReportingHost(DiameterIdentity errorReportingHost); /** * Returns the set of Failed-AVP AVPs. The returned array contains the AVPs * in the order they appear in the message. A return value of null implies * that no Failed-AVP AVPs have been set. The elements in the given array * are FailedAvp objects. */ FailedAvp[] getFailedAvps(); /** * Sets a single Failed-AVP AVP in the message, of type Grouped. * * @throws IllegalStateException * if setFailedAvp or setFailedAvps has already been called */ void setFailedAvp(FailedAvp failedAvp); /** * Sets the set of Failed-AVP AVPs, with all the values in the given array. * The AVPs will be added to message in the order in which they appear in * the array. * * Note: the array must not be altered by the caller following this call, * and getFailedAvps() is not guaranteed to return the same array instance, * e.g. an "==" check would fail. * * @throws IllegalStateException * if setFailedAvp or setFailedAvps has already been called */ void setFailedAvps(FailedAvp[] failedAvps); /** * Returns true if the Origin-State-Id AVP is present in the message. */ boolean hasOriginStateId(); /** * Returns the value of the Origin-State-Id AVP, of type Unsigned32. Use * {@link #hasOriginStateId()} to check the existence of this AVP. * * @return the value of the Origin-State-Id AVP * @throws IllegalStateException * if the Origin-State-Id AVP has not been set on this message */ long getOriginStateId(); /** * Sets the value of the Origin-State-Id AVP, of type Unsigned32. * * @throws IllegalStateException * if setOriginStateId has already been called */ void setOriginStateId(long originStateId); /** * Returns the set of Redirect-Host AVPs. The returned array contains the * AVPs in the order they appear in the message. A return value of null * implies that no Redirect-Host AVPs have been set. The elements in the * given array are DiameterURI objects. */ DiameterURI[] getRedirectHosts(); /** * Sets a single Redirect-Host AVP in the message, of type DiameterURI. * * @throws IllegalStateException * if setRedirectHost or setRedirectHosts has already been * called */ void setRedirectHost(DiameterURI redirectHost); /** * Sets the set of Redirect-Host AVPs, with all the values in the given * array. The AVPs will be added to message in the order in which they * appear in the array. * * Note: the array must not be altered by the caller following this call, * and getRedirectHosts() is not guaranteed to return the same array * instance, e.g. an "==" check would fail. * * @throws IllegalStateException * if setRedirectHost or setRedirectHosts has already been * called */ void setRedirectHosts(DiameterURI[] redirectHosts); /** * Returns true if the Redirect-Host-Usage AVP is present in the message. */ boolean hasRedirectHostUsage(); /** * Returns the value of the Redirect-Host-Usage AVP, of type Enumerated. * * @return the value of the Redirect-Host-Usage AVP or null if it has not * been set on this message */ RedirectHostUsageType getRedirectHostUsage(); /** * Sets the value of the Redirect-Host-Usage AVP, of type Enumerated. * * @throws IllegalStateException * if setRedirectHostUsage has already been called */ void setRedirectHostUsage(RedirectHostUsageType redirectHostUsage); /** * Returns true if the Redirect-Max-Cache-Time AVP is present in the * message. */ boolean hasRedirectMaxCacheTime(); /** * Returns the value of the Redirect-Max-Cache-Time AVP, of type Unsigned32. * Use {@link #hasRedirectMaxCacheTime()} to check the existence of this * AVP. * * @return the value of the Redirect-Max-Cache-Time AVP * @throws IllegalStateException * if the Redirect-Max-Cache-Time AVP has not been set on this * message */ long getRedirectMaxCacheTime(); /** * Sets the value of the Redirect-Max-Cache-Time AVP, of type Unsigned32. * * @throws IllegalStateException * if setRedirectMaxCacheTime has already been called */ void setRedirectMaxCacheTime(long redirectMaxCacheTime); /** * Returns the set of Proxy-Info AVPs. The returned array contains the AVPs * in the order they appear in the message. A return value of null implies * that no Proxy-Info AVPs have been set. The elements in the given array * are ProxyInfo objects. */ ProxyInfoAvp[] getProxyInfos(); /** * Sets a single Proxy-Info AVP in the message, of type Grouped. * * @throws IllegalStateException * if setProxyInfo or setProxyInfos has already been called */ void setProxyInfo(ProxyInfoAvp proxyInfo); /** * Sets the set of Proxy-Info AVPs, with all the values in the given array. * The AVPs will be added to message in the order in which they appear in * the array. * * Note: the array must not be altered by the caller following this call, * and getProxyInfos() is not guaranteed to return the same array instance, * e.g. an "==" check would fail. * * @throws IllegalStateException * if setProxyInfo or setProxyInfos has already been called */ void setProxyInfos(ProxyInfoAvp[] proxyInfos); /** * Returns true if the Proxy-Info AVP is present in the message. */ boolean hasProxyInfo(); }