org.siprop.v2.ua
Interface UAManager

All Superinterfaces:
Listener, Manager
All Known Implementing Classes:
UAManagerImpl

public interface UAManager
extends Manager

Manager interface for UA.

Author:
noritsuna

Method Summary
 void deleteUAContext(Context context)
          delete UAContext by Context.
 void deleteUAContext(java.lang.String key)
          delete UAContext by key.
 UAContext getUAContext(Context context)
          get UAContext by MessageContextImpl.
 UAContext getUAContext(java.lang.String key)
          Get UAContext by key.
 UAInterpreter getUaInterpreter()
          get UA Interpreter.
 void setUAContext(Context context, UAContext uaContext)
          set UAContext by Context.
 void setUAContext(java.lang.String key, UAContext uaContext)
          set UAContext by key.
 void setUaInterpreter(UAInterpreter uaInterpreter)
          set UA Interpreter.
 
Methods inherited from interface org.siprop.v2.core.Manager
doProcess, getBindingResolver, getRegisterResolver, getRouter, getServiceName, getUniKeyGenerator, send, setBindingResolver, setRegisterResolver, setRouter, setServiceName, setUniKeyGenerator, start, stop
 
Methods inherited from interface org.siprop.v2.core.Listener
onReceive
 

Method Detail

getUaInterpreter

UAInterpreter getUaInterpreter()
get UA Interpreter.

Returns:
UAInterpreter

setUaInterpreter

void setUaInterpreter(UAInterpreter uaInterpreter)
set UA Interpreter.

Parameters:
uaInterpreter -

getUAContext

UAContext getUAContext(Context context)
get UAContext by MessageContextImpl.

Parameters:
context -
Returns:
UAContext

getUAContext

UAContext getUAContext(java.lang.String key)
Get UAContext by key.

Parameters:
key -
Returns:
UAContext

setUAContext

void setUAContext(Context context,
                  UAContext uaContext)
set UAContext by Context.

Parameters:
context -
uaContext -

setUAContext

void setUAContext(java.lang.String key,
                  UAContext uaContext)
set UAContext by key.

Parameters:
key -
uaContext -

deleteUAContext

void deleteUAContext(Context context)
delete UAContext by Context.

Parameters:
context -

deleteUAContext

void deleteUAContext(java.lang.String key)
delete UAContext by key.

Parameters:
key -