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.ProxyInfoAvp; /** * Defines an interface representing the Abort-Session-Request command. * * From the Diameter Base Protocol (rfc3588.txt) specification: * <pre> * 8.5.1. Abort-Session-Request * * The Abort-Session-Request (ASR), indicated by the Command-Code set to * 274 and the message flags' 'R' bit set, may be sent by any server to * the access device that is providing session service, to request that * the session identified by the Session-Id be stopped. * * Message Format * * <Abort-Session-Request> ::= < Diameter Header: 274, REQ, PXY > * < Session-Id > * { Origin-Host } * { Origin-Realm } * { Destination-Realm } * { Destination-Host } * { Auth-Application-Id } * [ User-Name ] * [ Origin-State-Id ] * * [ Proxy-Info ] * * [ Route-Record ] * * [ AVP ] * </pre> */ public interface AbortSessionRequest extends DiameterMessage { static final int commandCode = 274; /** * Returns true if the Destination-Host AVP is present in the message. */ boolean hasDestinationHost(); /** * Returns true if the Destination-Realm AVP is present in the message. */ boolean hasDestinationRealm(); /** * Returns true if the Auth-Application-Id AVP is present in the message. */ boolean hasAuthApplicationId(); /** * Returns the value of the Auth-Application-Id AVP, of type Unsigned32. * Use {@link #hasAuthApplicationId()} to check the existence of this AVP. * @return the value of the Auth-Application-Id AVP * @throws IllegalStateException if the Auth-Application-Id AVP has not been set on this message */ long getAuthApplicationId(); /** * Sets the value of the Auth-Application-Id AVP, of type Unsigned32. * @throws IllegalStateException if setAuthApplicationId has already been called */ void setAuthApplicationId(long authApplicationId); /** * Returns true if the User-Name AVP is present in the message. */ boolean hasUserName(); /** * Returns the value of the User-Name AVP, of type UTF8String. * @return the value of the User-Name AVP or null if it has not been set on this message */ String getUserName(); /** * Sets the value of the User-Name AVP, of type UTF8String. * @throws IllegalStateException if setUserName has already been called */ void setUserName(String userName); /** * 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 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 the set of Route-Record AVPs. The returned array contains * the AVPs in the order they appear in the message. * A return value of null implies that no Route-Record AVPs have been set. * The elements in the given array are DiameterIdentity objects. */ DiameterIdentity[] getRouteRecords(); /** * Sets a single Route-Record AVP in the message, of type DiameterIdentity. * @throws IllegalStateException if setRouteRecord or setRouteRecords * has already been called */ void setRouteRecord(DiameterIdentity routeRecord); /** * Sets the set of Route-Record 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 * getRouteRecords() is not guaranteed to return the same array instance, * e.g. an "==" check would fail. * * @throws IllegalStateException if setRouteRecord or setRouteRecords * has already been called */ void setRouteRecords(DiameterIdentity[] routeRecords); /** * Returns true if the Proxy-Info AVP is present in the message. */ boolean hasProxyInfo(); }