Serialized Form


Package org.xins.common

Class org.xins.common.ProgrammingException extends RuntimeException implements Serializable

Serialized Fields

_detectingClass

String _detectingClass
The name of the class that detected the problem. Is null if unknown.


_detectingMethod

String _detectingMethod
The name of the method where the problem was detected. Is null if unknown.


_subjectClass

String _subjectClass
The name of the class which exposes the programming error. Is null if unknown.


_subjectMethod

String _subjectMethod
The name of the method which exposes the programming error, or null if unknown.


_detail

String _detail
The detail message. Can be null.

Class org.xins.common.TimeOutException extends Exception implements Serializable


Package org.xins.common.collections

Class org.xins.common.collections.AbstractPropertyReader extends Object implements Serializable

Serialized Fields

_properties

Map _properties
The mappings from property keys to values. Never null.

Class org.xins.common.collections.BasicPropertyReader extends AbstractPropertyReader implements Serializable

Class org.xins.common.collections.IncorrectSecretKeyException extends IllegalArgumentException implements Serializable

Class org.xins.common.collections.InvalidPropertyValueException extends Exception implements Serializable

Serialized Fields

_propertyName

String _propertyName
The name of the property. Cannot be null.


_propertyValue

String _propertyValue
The (invalid) value of the property. Cannot be null.


_reason

String _reason
The detailed reason. Can be null.

Class org.xins.common.collections.MissingRequiredPropertyException extends Exception implements Serializable

Serialized Fields

_propertyName

String _propertyName
The name of the property. Never null.


_detail

String _detail
Detailed description of why this property is required in the current context. Can be null.

Class org.xins.common.collections.PropertiesPropertyReader extends AbstractPropertyReader implements Serializable

Class org.xins.common.collections.ProtectedPropertyReader extends AbstractPropertyReader implements Serializable

Serialized Fields

_secretKey

Object _secretKey
The secret key. This field is initialized by the constructor and can never be null.

Class org.xins.common.collections.StatsPropertyReader extends Object implements Serializable

Serialized Fields

_properties

Map _properties
The set of properties to retrieve values from. Never null.


_unused

ProtectedPropertyReader _unused
The set of unused properties. Initially contains all properties. Becomes null if there are no more unused properties.

Class org.xins.common.collections.WarnDoubleProperties extends Properties implements Serializable


Package org.xins.common.http

Class org.xins.common.http.HTTPCallConfig extends CallConfig implements Serializable

Serialized Fields

_instanceNumber

int _instanceNumber
The 1-based sequence number of this instance. Since this number is 1-based, the first instance of this class will have instance number 1 assigned to it.


_method

HTTPMethod _method
The HTTP method to use. This field cannot be null.


_userAgent

String _userAgent
The HTTP user agent. This field can be null.

Class org.xins.common.http.HTTPCallException extends CallException implements Serializable

serialVersionUID: 4843166618439269741l

Class org.xins.common.http.HTTPCallRequest extends CallRequest implements Serializable

Serialized Fields

_instanceNumber

int _instanceNumber
The 1-based sequence number of this instance. Since this number is 1-based, the first instance of this class will have instance number 1 assigned to it.


_asString

String _asString
Description of this HTTP call request. This field cannot be null, it is initialized during construction.


_parameters

PropertyReader _parameters
The parameters for the HTTP call. This field cannot be null, it is initialized during construction.


_statusCodeVerifier

HTTPStatusCodeVerifier _statusCodeVerifier
The HTTP status code verifier, or null if all HTTP status codes are allowed.

Class org.xins.common.http.HTTPCallResult extends CallResult implements Serializable

Serialized Fields

_data

HTTPCallResultData _data
The HTTPCallResultData object that contains the information returned from the call. This field cannot be null.

Class org.xins.common.http.HTTPMethod extends Object implements Serializable

Serialized Fields

_name

String _name
The name of this method. For example "GET" or "POST". This field should never be null.

Class org.xins.common.http.StatusCodeHTTPCallException extends HTTPCallException implements Serializable

serialVersionUID: 5165140514693822383l

Serialized Fields

_code

int _code
The returned HTTP status code.


Package org.xins.common.manageable

Class org.xins.common.manageable.BootstrapException extends Exception implements Serializable

Class org.xins.common.manageable.DeinitializationException extends Exception implements Serializable

Class org.xins.common.manageable.InitializationException extends Exception implements Serializable


Package org.xins.common.service

Class org.xins.common.service.CallConfig extends Object implements Serializable

Serialized Fields

_instanceNumber

int _instanceNumber
The 1-based sequence number of this instance. Since this number is 1-based, the first instance of this class will have instance number 1 assigned to it.


_failOverAllowed

boolean _failOverAllowed
Flag that indicates whether fail-over is unconditionally allowed.

Class org.xins.common.service.CallException extends Exception implements Serializable

serialVersionUID: -7359880685027521685l

Serialized Fields

_shortReason

String _shortReason
Short description of the reason. Cannot be null.


_request

CallRequest _request
The original request. Cannot be null.


_target

TargetDescriptor _target
Descriptor for the target that was attempted to be called. Cannot be null.


_duration

long _duration
The time elapsed between the time the call attempt was started and the time the call returned. The duration is in milliseconds and is always >= 0.


_detail

String _detail
A detailed description of the problem. Can be null.


_next

CallException _next
The next linked CallException. Can be null if there is none or if it has not been set yet.


_message

String _message
The exception message. Is null if unset.

Class org.xins.common.service.CallRequest extends Object implements Serializable

Serialized Fields

_callConfig

CallConfig _callConfig
The CallConfig associated with this request, if any. Can be -and initially is- null.

Class org.xins.common.service.CallResult extends Object implements Serializable

Serialized Fields

_request

CallRequest _request
The call request. This field cannot be null.


_succeededTarget

TargetDescriptor _succeededTarget
The target for which the call succeeded. This field cannot be null.


_duration

long _duration
The call duration, in milliseconds.


_exceptions

CallExceptionList _exceptions
The list of CallExceptions. This field may be null.

Class org.xins.common.service.ConnectionCallException extends GenericCallException implements Serializable

serialVersionUID: -331358001038403428l

Class org.xins.common.service.ConnectionRefusedCallException extends ConnectionCallException implements Serializable

serialVersionUID: -7764503252933271908l

Class org.xins.common.service.ConnectionTimeOutCallException extends ConnectionCallException implements Serializable

serialVersionUID: -1955586477316135304l

Class org.xins.common.service.Descriptor extends Object implements Serializable

Class org.xins.common.service.GenericCallException extends CallException implements Serializable

serialVersionUID: 3372509223668556012l

Class org.xins.common.service.GroupDescriptor extends Descriptor implements Serializable

Serialized Fields

_type

GroupDescriptor.Type _type
The type of this group. Cannot be null.


_members

Descriptor[] _members
The members of this group. Cannot be null.


_targetsByCRC

Map _targetsByCRC
All contained TargetDescriptor instances, by CRC-32. This Map is used by GroupDescriptor.getTargetByCRC(int) to lookup a TargetDescriptor by CRC-32 checksum.

This field is initialized by the constructor and can never be null.


_targetCount

int _targetCount
The total number of targets in this group. The value of this field is always >= 1.

Class org.xins.common.service.GroupDescriptor.Type extends Object implements Serializable

Serialized Fields

_description

String _description
The description for this type.

Class org.xins.common.service.IOCallException extends GenericCallException implements Serializable

serialVersionUID: -1118963769763850776l

Class org.xins.common.service.NoRouteToHostCallException extends ConnectionCallException implements Serializable

Class org.xins.common.service.SocketTimeOutCallException extends GenericCallException implements Serializable

serialVersionUID: 3960746542315816035l

Class org.xins.common.service.TargetDescriptor extends Descriptor implements Serializable

Serialized Fields

_instanceNumber

int _instanceNumber
The 1-based sequence number of this instance. Since this number is 1-based, the first instance of this class will have instance number 1 assigned to it.


_asString

String _asString
A textual representation of this object. Lazily initialized by TargetDescriptor.toString() before returning it.


_url

String _url
The URL for the service. Cannot be null.


_timeOut

int _timeOut
The total time-out for the service. Is set to a 0 if no total time-out should be applied.


_connectionTimeOut

int _connectionTimeOut
The connection time-out for the service. Always greater than 0 and smaller than or equal to the total time-out.


_socketTimeOut

int _socketTimeOut
The socket time-out for the service. Always greater than 0 and smaller than or equal to the total time-out.


_crc

int _crc
The CRC-32 checksum for the URL. See #_url.

Class org.xins.common.service.TotalTimeOutCallException extends GenericCallException implements Serializable

serialVersionUID: -6065489266853904044l

Class org.xins.common.service.UnexpectedExceptionCallException extends GenericCallException implements Serializable

serialVersionUID: -3071445845610955883l

Class org.xins.common.service.UnknownHostCallException extends ConnectionCallException implements Serializable

serialVersionUID: 1266820641762046595l

Class org.xins.common.service.UnsupportedProtocolException extends RuntimeException implements Serializable

serialVersionUID: 2847976540646154938l

Serialized Fields

_target

TargetDescriptor _target
The target descriptor that has an unsupported protocol. Cannot be null.


Package org.xins.common.servlet

Class org.xins.common.servlet.ServletConfigPropertyReader extends Object implements Serializable

Serialized Fields

_servletConfig

ServletConfig _servletConfig
The servlet configuration object.


_size

int _size
The number of properties. This field is lazily initialized by ServletConfigPropertyReader.size().

Class org.xins.common.servlet.ServletRequestPropertyReader extends AbstractPropertyReader implements Serializable


Package org.xins.common.spec

Class org.xins.common.spec.EntityNotFoundException extends Exception implements Serializable

Class org.xins.common.spec.InvalidSpecificationException extends Exception implements Serializable


Package org.xins.common.text

Class org.xins.common.text.FormatException extends RuntimeException implements Serializable

Serialized Fields

_string

String _string
The string that is considered invalid. Cannot be null.


_reason

String _reason
The reason for the string to be considered invalid. Can be null.

Class org.xins.common.text.NonASCIIException extends RuntimeException implements Serializable

Class org.xins.common.text.ParseException extends Exception implements Serializable

Serialized Fields

_detail

String _detail
Description of the parse error. Can be null.


Package org.xins.common.threads

Class org.xins.common.threads.QueueTimeOutException extends RuntimeException implements Serializable


Package org.xins.common.types

Class org.xins.common.types.PatternCompileException extends RuntimeException implements Serializable

Class org.xins.common.types.TypeValueException extends Exception implements Serializable

Serialized Fields

_type

Type _type
The concerning parameter type. This field is never null.


_value

String _value
The value that is considered invalid. This field is never null.


_detail

String _detail
The additional detail information passed to the constructor. Can be null.


Package org.xins.logdoc

Class org.xins.logdoc.UnsupportedLocaleError extends Error implements Serializable

Serialized Fields

_locale

String _locale
The locale that is unsupported. The value of this field cannot be null.

Class org.xins.logdoc.UnsupportedLocaleException extends Exception implements Serializable

Serialized Fields

_locale

String _locale
The locale that is unsupported. The value of this field cannot be null.


Package org.xins.server

Class org.xins.server.AccessDeniedException extends Exception implements Serializable

Serialized Fields

_ip

String _ip
The IP address which is denied for the given function. This field may be null.


_functionName

String _functionName
The name of the function which does not grant the access. This field may be null.

Class org.xins.server.APIServlet extends HttpServlet implements Serializable

serialVersionUID: -1117062458458353841l

Serialized Fields

_engine

Engine _engine
XINS server engine. Initially null but set to a non-null value in the APIServlet.init(ServletConfig) method.

Class org.xins.server.FunctionNotSpecifiedException extends Exception implements Serializable

Class org.xins.server.InvalidRequestException extends Exception implements Serializable

Class org.xins.server.InvalidResponseException extends RuntimeException implements Serializable

Class org.xins.server.NoSuchFunctionException extends Exception implements Serializable

Serialized Fields

_functionName

String _functionName
The name of the function.

Class org.xins.server.ParameterNotInitializedException extends RuntimeException implements Serializable


Package org.xins.client

Class org.xins.client.AbstractCAPICallRequest extends Object implements Serializable

Serialized Fields

_functionName

String _functionName
The name the function to call, never null.


_callConfig

XINSCallConfig _callConfig
The call configuration. Initially null.


_parameterValues

Map _parameterValues
Mapping from parameter names to either their associated string values or to an exception if the conversion to a string failed. This field is lazily initialized and initially null.


_dataSection

Element _dataSection
The data section of the function if any, can be null.


_dataElementBuilder

ElementBuilder _dataElementBuilder
The data element builder, can be null.

Class org.xins.client.AbstractCAPICallResult extends Object implements Serializable

Serialized Fields

_result

XINSCallResult _result
The XINS call result. This field cannot be null.

Class org.xins.client.AbstractCAPIErrorCodeException extends UnsuccessfulXINSCallException implements Serializable

Class org.xins.client.DisabledFunctionException extends StandardErrorCodeException implements Serializable

Class org.xins.client.InternalErrorException extends StandardErrorCodeException implements Serializable

Class org.xins.client.InvalidRequestException extends StandardErrorCodeException implements Serializable

Class org.xins.client.InvalidResultXINSCallException extends XINSCallException implements Serializable

Class org.xins.client.StandardErrorCodeException extends UnsuccessfulXINSCallException implements Serializable

Class org.xins.client.UnacceptableErrorCodeXINSCallException extends UnacceptableResultXINSCallException implements Serializable

Class org.xins.client.UnacceptableRequestException extends RuntimeException implements Serializable

Serialized Fields

_request

AbstractCAPICallRequest _request
The request that is considered unacceptable. Never null.


_errors

DataElement _errors
The DataElement containing the errors.


_message

String _message
The error message.

Class org.xins.client.UnacceptableResultXINSCallException extends XINSCallException implements Serializable

Serialized Fields

_result

XINSCallResultData _result
The result that is considered unacceptable. Never null.

Class org.xins.client.UnsuccessfulXINSCallException extends XINSCallException implements Serializable

Serialized Fields

_result

XINSCallResultData _result
The result data. The value of this field cannot be null.


_type

ErrorCodeSpec.Type _type
The type of the error.

Class org.xins.client.XINSCallConfig extends CallConfig implements Serializable

Serialized Fields

_instanceNumber

int _instanceNumber
The 1-based sequence number of this instance. Since this number is 1-based, the first instance of this class will have instance number 1 assigned to it.


_httpCallConfig

HTTPCallConfig _httpCallConfig
The underlying HTTP call config. Cannot be null.

Class org.xins.client.XINSCallException extends CallException implements Serializable

Class org.xins.client.XINSCallRequest extends CallRequest implements Serializable

Serialized Fields

_instanceNumber

int _instanceNumber
The 1-based sequence number of this instance. Since this number is 1-based, the first instance of this class will have instance number 1 assigned to it.


_asString

String _asString
Description of this XINS call request. This field cannot be null, it is initialized during construction.


_functionName

String _functionName
The name of the function to call. This field cannot be null.


_parameters

ProtectedPropertyReader _parameters
The parameters to pass in the request, and their respective values. This field can be null.


_dataSection

Element _dataSection
The data section to pass in the request. This field can be null.


_httpParams

ProtectedPropertyReader _httpParams
The parameters to send with the HTTP request. Cannot be null.


_patternMatcher

Perl5Matcher _patternMatcher
Pattern matcher.

Class org.xins.client.XINSCallResult extends CallResult implements Serializable

Serialized Fields

_data

XINSCallResultData _data
The XINSCallResultData object that contains all the information returned from the call. This field cannot be null.


Package org.xins.client.async

Class org.xins.client.async.CallFailedEvent extends org.xins.client.async.CallEvent implements Serializable

Serialized Fields

_exception

Exception _exception
The exception thrown by the call.

Class org.xins.client.async.CallSucceededEvent extends org.xins.client.async.CallEvent implements Serializable

Serialized Fields

_result

AbstractCAPICallResult _result
The successful result returned by the function.



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