Package org.xins.server

XINS server framework.

See:
          Description

Interface Summary
AccessRuleContainer Collection of one or more access rules.
APIManagerMBean Management bean for the API.
DefaultResultCodes Constants for the default result codes.
 

Class Summary
AccessRule Access rule.
AccessRuleFile Collection of access rules that are read from a separate file.
AccessRuleList Access rule list.
API Base class for API implementation classes.
APIManager Management bean for the API.
APIServlet HTTP servlet that forwards requests to an API.
APIServletSingleThreaded This class is similar to APIServlet except that it implements the javax.servlet.SingleThreadModel to indique that only 1 thread can handle only 1 request at a time.
CallContext Context for a function call.
CallResultOutputter Converter that can be used by calling conventions to generate responses which are compatible with the XINS standard calling convention.
CustomCallingConvention Base class for calling convention implementations that are not part of the core XINS framework.
Function Base class for function implementation classes.
FunctionRequest Function request.
FunctionResult Result from a function call.
InvalidRequestResult Result code that indicates that an input parameter is either missing or invalid.
InvalidResponseResult Result code that indicates that an output parameter is either missing or invalid.
IPFilter Filter for IP addresses.
JSONCallingConvention The JSON calling convention.
JSONRPCCallingConvention The JSON-RPC calling convention.
Library Class that represents the XINS/Java Server Framework library.
Log Central logging handler.
ResultCode Abstraction of an error code returned by a function.
RuntimeProperties Base class to get the runtime properties.
SOAPCallingConvention The SOAP calling convention.
SOAPMapCallingConvention The SOAP calling convention that tries to map the SOAP request to the parameters of the function.
StandardCallingConvention Standard calling convention.
TranslationBundle Translation bundle for log messages.
TranslationBundle_en_US Translation bundle for the en_US locale.
TranslationBundle_fr_FR Translation bundle for the fr_FR locale.
XMLCallingConvention XML calling convention.
XMLRPCCallingConvention The XML-RPC calling convention.
XSLTCallingConvention XSLT calling convention.
 

Exception Summary
AccessDeniedException Exception that indicates that there is no function matching the request.
FunctionNotSpecifiedException Exception that indicates that an incoming request does not specify the function to execute.
InvalidRequestException Exception that indicates that an incoming request is considered invalid.
InvalidResponseException Exception that indicates that a response is considered invalid.
NoSuchFunctionException Exception that indicates that there is no function matching the request.
ParameterNotInitializedException Exception that indicates that it is attempted to get the value of a parameter that has not been set.
 

Package org.xins.server Description

XINS server framework.

The classes in this package are meant for internal use only.

Please do not use these classes directly, except when implementing a CustomCallingConvention.

Since:
XINS 1.0.0


See http://www.xins.org/.