Serialized Form


Package com.acsinet_solutions.cetia4.controller.meta

Class com.acsinet_solutions.cetia4.controller.meta.AttributeInfo extends java.lang.Object implements Serializable

Serialized Fields

_name

java.lang.String _name
The name of the attribute.


_type

java.lang.Class<T> _type
The type of the attribute. This field is mutable, so late class association is possible.


_scope

Scope _scope
The scope that stores the attribute.


_maintenancePolicy

AttributeMaintenancePolicy _maintenancePolicy
The maintenance policy of the current attribute.


Package com.acsinet_solutions.cetia4.controller.nav

Class com.acsinet_solutions.cetia4.controller.nav.NavigationStageGroupImpl extends java.lang.Object implements Serializable

Serialized Fields

_name

java.lang.String _name
The name of the navigation stage group. Not-null, not-empty, unique for each group.


_stages

java.util.List<E> _stages
The not null not empty list of at least two NavigationStageImpl instances that conform a group.


_selectedIndex

int _selectedIndex
The selected index value.

Class com.acsinet_solutions.cetia4.controller.nav.NavigationStageImpl extends java.lang.Object implements Serializable

Serialized Fields

_name

java.lang.String _name
The name of the controller associated with this navigation stage.


_link

Link _link
The URL link to the current controller


_attributeInfo

AttributeInfo _attributeInfo
The form attribute of the current step.

Class com.acsinet_solutions.cetia4.controller.nav.SimpleNavigationFlow extends java.lang.Object implements Serializable

Serialized Fields

_list

java.util.List<E> _list
The internal stage structure, with always at least one element.


Package com.acsinet_solutions.cetia4.controller.rest

Class com.acsinet_solutions.cetia4.controller.rest.AbstractRestServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

_manager

com.acsinet_solutions.cetia4.controller.rest.ControllerManager _manager
Set of render controllers for the current REST servlet


_logger

org.apache.commons.logging.Log _logger
Logger for the current instance.


_renderHandlers

java.util.List<E> _renderHandlers
List of render handlers that may answer to a request.


_actionHandlers

java.util.List<E> _actionHandlers
Request handler for simple HTTP POST, PUT, DELETE web requests.


_loginType

LoginType _loginType
Login type value; no explicit security model by default.


_configuration

Configuration _configuration
The internal configuration reference.

Class com.acsinet_solutions.cetia4.controller.rest.RestServlet extends AbstractRestServlet implements Serializable

Serialized Fields

_nestedModules

java.util.List<E> _nestedModules
Internal list of nested modules


Package com.acsinet_solutions.cetia4.controller.rest.support

Class com.acsinet_solutions.cetia4.controller.rest.support.DynamicRestServlet extends AbstractRestServlet implements Serializable

Class com.acsinet_solutions.cetia4.controller.rest.support.MainServlet extends RestServlet implements Serializable


Package com.acsinet_solutions.cetia4.controller.support

Class com.acsinet_solutions.cetia4.controller.support.ErrorServlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

_configuration

Configuration _configuration
Configuration reference.

Class com.acsinet_solutions.cetia4.controller.support.LogoutServlet extends javax.servlet.http.HttpServlet implements Serializable


Package com.acsinet_solutions.cetia4.data

Class com.acsinet_solutions.cetia4.data.CompositeIntKey extends java.lang.Object implements Serializable

Serialized Fields

_id1

int _id1

_id2

int _id2

Class com.acsinet_solutions.cetia4.data.PagedResults extends PagingBlock implements Serializable

Serialized Fields

_list

java.util.List<E> _list
List of results.


_filter

PagedSearchFilter _filter
Query filter.


_totalNumberOfResults

int _totalNumberOfResults
The total number of results. -1 if unknown

Class com.acsinet_solutions.cetia4.data.PagedSearchFilter extends java.lang.Object implements Serializable

Serialized Fields

_firstResult

int _firstResult
First result to be displayed. Only used if _maxResults is >=0.


_maxResults

int _maxResults
Maximum results. The paging is deactivated if this value <= 0


_ascending

boolean _ascending
Ascending flag

Class com.acsinet_solutions.cetia4.data.PagingBlock extends java.lang.Object implements Serializable

Serialized Fields

_blockIndex

int _blockIndex
Block index


_blockSize

int _blockSize
Block size

Class com.acsinet_solutions.cetia4.data.SimpleIntKeyDTO extends java.lang.Object implements Serializable

Serialized Fields

_id

int _id

_version

int _version

Package com.acsinet_solutions.cetia4.http

Class com.acsinet_solutions.cetia4.http.ActionCommand extends java.lang.Object implements Serializable

Serialized Fields

_method

HttpMethod _method
Implemented method


_page

java.lang.String _page
Requested page


_params

java.util.Map<K,V> _params
Parameter map

Class com.acsinet_solutions.cetia4.http.DeleteCommand extends ActionCommand implements Serializable

Class com.acsinet_solutions.cetia4.http.GetCommand extends java.lang.Object implements Serializable

Serialized Fields

_link

Link _link
Requested link

Class com.acsinet_solutions.cetia4.http.PostCommand extends ActionCommand implements Serializable

Class com.acsinet_solutions.cetia4.http.PutCommand extends ActionCommand implements Serializable


Package com.acsinet_solutions.cetia4.service

Class com.acsinet_solutions.cetia4.service.InvalidUserException extends java.lang.Exception implements Serializable

Class com.acsinet_solutions.cetia4.service.NotificationException extends java.lang.Exception implements Serializable


Package com.acsinet_solutions.cetia4.tags

Class com.acsinet_solutions.cetia4.tags.ButtonTag extends FormTag implements Serializable

Serialized Fields

_standalone

boolean _standalone
If true, the button is not currently in a form; false otherwise


_text

java.lang.String _text
Text for the button


_confirmation

java.lang.String _confirmation
Confirmation text for the button, if a confirmation window is desired before sending confirmation using the onClick() JavaScript event handler and the confirm() JavaScript function.

Class com.acsinet_solutions.cetia4.tags.CheckboxTag extends LogBodyTagSupport implements Serializable

Serialized Fields

_name

java.lang.String _name
Name of the tag.


_value

java.lang.String _value
Value of the tag.


_checked

boolean _checked
Checked flag, that indicates if the checkbox is selected or not


_checkedProvided

boolean _checkedProvided
See if the checked attribute was provided or not.


_enabled

boolean _enabled
Enabled flag, that activates or deactivates the checkbox depending on the enabled condition

Class com.acsinet_solutions.cetia4.tags.ComboTag extends LogBodyTagSupport implements Serializable

Serialized Fields

_select

org.apache.ecs.html.Select _select
The combo component. Created each time is needed.


_name

java.lang.String _name
The name of the component; could also be obtained fromt the Select instance


_selected

java.lang.String _selected
The selected object


_selectedProvided

boolean _selectedProvided
Check if setSelected() was called.


_catalog

java.util.Map<K,V> _catalog
The catalog that will provide the combo options


_enabled

boolean _enabled
Enabled flag, that activates or deactivates the combo depending on the enabled condition

Class com.acsinet_solutions.cetia4.tags.DateFieldTag extends TextFieldTag implements Serializable

Serialized Fields

_defaultFormat

java.text.DateFormat _defaultFormat
Default format for current class. As SimpleDateFormat is not thread-safe this is instance based, and not static.


_format

java.text.DateFormat _format
Format for the current date field.

Class com.acsinet_solutions.cetia4.tags.DecimalFieldTag extends TextFieldTag implements Serializable

Serialized Fields

_defaultFormat

java.text.NumberFormat _defaultFormat
Default format for the current instance.


_format

java.text.NumberFormat _format
Format to be applied.

Class com.acsinet_solutions.cetia4.tags.DisplayDateRangeTag extends LogTagSupport implements Serializable

Serialized Fields

_startDate

java.util.Calendar _startDate
Starting date in the range


_endDate

java.util.Calendar _endDate
Ending date in the range

Class com.acsinet_solutions.cetia4.tags.DisplayTag extends LogTagSupport implements Serializable

Serialized Fields

_limit

int _limit
The current text limit.


_text

java.lang.String _text
The text being limited or decoded


_decoder

java.lang.String _decoder
The decoder to be used.


_padding

java.lang.String _padding
The padding of the tag

Class com.acsinet_solutions.cetia4.tags.ForEachIssueTag extends LogLoopTagSupport implements Serializable

Serialized Fields

_iterator

java.util.Iterator<E> _iterator
Internal iterator instance of the individual strings obtained from the issues.

Class com.acsinet_solutions.cetia4.tags.FormTag extends AbstractLinkTag implements Serializable

Serialized Fields

_method

java.lang.String _method
Method argument, it refers to an HTTP method. In POST related forms a method to be invoked on the servlet side may also be placed here as a simple way to establick the _METHOD_PARAM hidden input tag.

See Also:
ControllerConstants._METHOD_PARAM

_bean

java.lang.Object _bean
Bean that is being introspected.


_defaultMethod

java.lang.String _defaultMethod
The default method GET or POST


_fillDynamicValues

boolean _fillDynamicValues
Fill dynamic values flag

Class com.acsinet_solutions.cetia4.tags.HiddenTag extends TextFieldTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.InitTag extends LogTagSupport implements Serializable

Serialized Fields

_writeScripts

boolean _writeScripts
This flag indicates if the script files should be imported.

Class com.acsinet_solutions.cetia4.tags.LinkTag extends AbstractLinkTag implements Serializable

Serialized Fields

_padding

boolean _padding
Stores if padding is requested.

Class com.acsinet_solutions.cetia4.tags.OptionTag extends LogTagSupport implements Serializable

Serialized Fields

_text

java.lang.String _text
The text string


_value

java.lang.String _value
The value string


_start

boolean _start
The optional start value

Class com.acsinet_solutions.cetia4.tags.ParamTag extends LogTagSupport implements Serializable

Serialized Fields

_key

java.lang.String _key
The internal not-null key property


_value

java.lang.String _value
The internal not-null value property

Class com.acsinet_solutions.cetia4.tags.RadioTag extends TextFieldTag implements Serializable

Serialized Fields

_checkedProvided

boolean _checkedProvided
See if the checked attribute was provided or not.

Class com.acsinet_solutions.cetia4.tags.SetTag extends LogTagSupport implements Serializable

Serialized Fields

_var

java.lang.String _var
Name of the page variable that will store the value


_value

java.lang.Object _value
Value that will be stored, as a result of a JEXL evaluation

Class com.acsinet_solutions.cetia4.tags.TextAreaTag extends LogTagSupport implements Serializable

Serialized Fields

_textArea

org.apache.ecs.html.TextArea _textArea
Internal Textarea component


_name

java.lang.String _name
The text name of the component


_value

java.lang.String _value
The text value of the component


_enabled

boolean _enabled
The optional enabled status

Class com.acsinet_solutions.cetia4.tags.TextFieldTag extends LogTagSupport implements Serializable

Serialized Fields

_input

org.apache.ecs.html.Input _input
Internal input object used to fill values. Recreated each time.


_value

java.lang.Object _value
The value to be set.


_valueProvided

boolean _valueProvided
Check if setValue() was called.


_enabled

boolean _enabled
The optional enabled status

Class com.acsinet_solutions.cetia4.tags.TimeFieldTag extends TextFieldTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.WriteExceptionTag extends javax.servlet.jsp.tagext.TagSupport implements Serializable


Package com.acsinet_solutions.cetia4.tags.nav

Class com.acsinet_solutions.cetia4.tags.nav.BreadcrumbTag extends LogTagSupport implements Serializable

Serialized Fields

_class

java.lang.String _class
CSS breadcrumb class


_selectedClass

java.lang.String _selectedClass
CSS breadcrumb class of the selected stage

Class com.acsinet_solutions.cetia4.tags.nav.HiddenPageTag extends HiddenTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.nav.IfMenuTag extends LogConditionalTagSupport implements Serializable

Serialized Fields

_types

java.util.Set<E> _types
The types of pages that will cause the tag to return true.


Package com.acsinet_solutions.cetia4.tags.pager

Class com.acsinet_solutions.cetia4.tags.pager.AbstractBlockConditionTag extends LogConditionalTagSupport implements Serializable

Class com.acsinet_solutions.cetia4.tags.pager.AbstractBlockIteratorTag extends LogLoopTagSupport implements Serializable

Serialized Fields

_iterator

java.util.Iterator<E> _iterator
Internal iterator instance

Class com.acsinet_solutions.cetia4.tags.pager.AbstractBlockTag extends AbstractBlockConditionTag implements Serializable

Serialized Fields

_var

java.lang.String _var
Variable that will hold a reference to the PagingBlock


_block

PagingBlock _block
Current paging block reference.

Class com.acsinet_solutions.cetia4.tags.pager.FirstTag extends AbstractBlockTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.pager.IfFirstTag extends AbstractBlockConditionTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.pager.IfLastTag extends AbstractBlockConditionTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.pager.IterateNextTag extends AbstractBlockIteratorTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.pager.IteratePreviousTag extends AbstractBlockIteratorTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.pager.LastTag extends AbstractBlockTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.pager.LinkTag extends LinkTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.pager.NextTag extends AbstractBlockTag implements Serializable

Class com.acsinet_solutions.cetia4.tags.pager.PagerTag extends LogBodyTagSupport implements Serializable

Serialized Fields

_results

PagedResults<T> _results
Results instance that holds the information for all the rest of the tags in this taglib.


_link

URLLink _link
Default action to be set by subtags, using the rationale that normally all links in a paging point to the same target action. May be null.


_method

java.lang.String _method
Default method to be executed by subtags, using the same rationale. May also be null.

Class com.acsinet_solutions.cetia4.tags.pager.PreviousTag extends AbstractBlockTag implements Serializable


Package com.acsinet_solutions.cetia4.tags.support

Class com.acsinet_solutions.cetia4.tags.support.AbstractLinkTag extends LogBodyTagSupport implements Serializable

Serialized Fields

_link

URLLink _link
Internal action instance


_section

java.lang.String _section
Section instance

Class com.acsinet_solutions.cetia4.tags.support.LogBodyTagSupport extends javax.servlet.jsp.tagext.BodyTagSupport implements Serializable

Serialized Fields

_logger

org.apache.commons.logging.Log _logger
Internal logger object for the current instance.


_dynamicAttributes

java.util.Map<K,V> _dynamicAttributes
Dynamic attributes map. Lazily loaded.

Class com.acsinet_solutions.cetia4.tags.support.LogConditionalTagSupport extends javax.servlet.jsp.jstl.core.ConditionalTagSupport implements Serializable

Serialized Fields

_logger

org.apache.commons.logging.Log _logger

Class com.acsinet_solutions.cetia4.tags.support.LogLoopTagSupport extends javax.servlet.jsp.jstl.core.LoopTagSupport implements Serializable

Serialized Fields

_logger

org.apache.commons.logging.Log _logger

Class com.acsinet_solutions.cetia4.tags.support.LogTagSupport extends javax.servlet.jsp.tagext.TagSupport implements Serializable

Serialized Fields

_logger

org.apache.commons.logging.Log _logger
Internal logger object for the current instance.


_dynamicAttributes

java.util.Map<K,V> _dynamicAttributes
Dynamic attributes map. Lazily loaded.


Package com.acsinet_solutions.cetia4.test.controller

Class com.acsinet_solutions.cetia4.test.controller.Topics10Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics11Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics12Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics13Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics14Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics15Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics16Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics1Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics2Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics3Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics4Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics5Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics6Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics7Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics8Servlet extends RestServlet implements Serializable

Class com.acsinet_solutions.cetia4.test.controller.Topics9Servlet extends RestServlet implements Serializable


Package com.acsinet_solutions.cetia4.test.data

Class com.acsinet_solutions.cetia4.test.data.Detail extends java.lang.Object implements Serializable

Serialized Fields

_number

int _number

_description

java.lang.String _description

_notes

java.util.List<E> _notes

_references

java.util.Set<E> _references

Class com.acsinet_solutions.cetia4.test.data.Invoice extends java.lang.Object implements Serializable

Serialized Fields

_version

int _version

_id

int _id

_details

java.util.List<E> _details

_notes

java.util.List<E> _notes

Class com.acsinet_solutions.cetia4.test.data.Note extends java.lang.Object implements Serializable

Serialized Fields

_text

java.lang.String _text

_invoice

Invoice _invoice

Class com.acsinet_solutions.cetia4.test.data.TopicDTO extends java.lang.Object implements Serializable

Serialized Fields

_id

int _id

_name

java.lang.String _name

_text

java.lang.String _text

_date

java.util.Calendar _date

_userId

int _userId

_bonus

java.math.BigDecimal _bonus

_topicType

int _topicType

_topicAudience

int _topicAudience

_status

int _status

_note

Note _note

Class com.acsinet_solutions.cetia4.test.data.TopicSearchFilter extends PagedSearchFilter implements Serializable

Serialized Fields

_pattern

java.lang.String _pattern
Search pattern


Package com.acsinet_solutions.util

Class com.acsinet_solutions.util.AbstractLink extends java.lang.Object implements Serializable

Serialized Fields

_suffixAppender

URLSuffixAppender _suffixAppender
List of suffix keys

Class com.acsinet_solutions.util.ConversionManager extends java.lang.Object implements Serializable

Serialized Fields

_dateFormat

java.text.SimpleDateFormat _dateFormat

_decimalFormat

java.text.DecimalFormat _decimalFormat

Class com.acsinet_solutions.util.URLLink extends AbstractLink implements Serializable

Serialized Fields

_section

java.lang.String _section
The link section


_page

java.lang.String _page
page value

Class com.acsinet_solutions.util.URLSuffixAppender extends java.lang.Object implements Serializable

Serialized Fields

_map

java.util.Map<K,V> _map
Map of suffix keys


Package com.acsinet_solutions.util.adt

Class com.acsinet_solutions.util.adt.CacheMap extends java.util.LinkedHashMap<K,V> implements Serializable

Serialized Fields

_size

int _size
The not null size of the cache.

Class com.acsinet_solutions.util.adt.Catalog extends ExceptionMap<java.lang.String,java.util.Map<K,V>> implements Serializable

Class com.acsinet_solutions.util.adt.ITreeNode extends java.lang.Object implements Serializable

Serialized Fields

_parent

ITreeNode _parent
ITreeNode parent, true if root node


_name

java.lang.String _name
Internal name set when the node has a parent


_obj

java.lang.Object _obj
The object that this node holds


_sons

java.util.Map<K,V> _sons
Not null keyed list of sons of this node


_siblings

java.util.List<E> _siblings
Sibling cache lazily loaded List instance


Package com.acsinet_solutions.util.build

Class com.acsinet_solutions.util.build.BuildException extends java.lang.Exception implements Serializable


Package com.acsinet_solutions.util.exception

Class com.acsinet_solutions.util.exception.AccessException extends SystemException implements Serializable

Class com.acsinet_solutions.util.exception.EvaluationException extends java.lang.Exception implements Serializable

Class com.acsinet_solutions.util.exception.NestedExceptionWrapper extends java.lang.Exception implements Serializable

Serialized Fields

_throwable

java.lang.Throwable _throwable
The "real" wrapped exception. Must be not null.

Class com.acsinet_solutions.util.exception.NonExistentObjectException extends java.lang.Exception implements Serializable

Class com.acsinet_solutions.util.exception.ProtocolException extends java.lang.Exception implements Serializable

Class com.acsinet_solutions.util.exception.SyntaxException extends java.lang.Exception implements Serializable

Class com.acsinet_solutions.util.exception.SystemException extends java.lang.RuntimeException implements Serializable

Class com.acsinet_solutions.util.exception.ValidationException extends java.lang.Exception implements Serializable

Serialized Fields

_issues

java.util.List<E> _issues

Class com.acsinet_solutions.util.exception.ValidationRuntimeException extends SystemException implements Serializable

Serialized Fields

_issues

java.util.List<E> _issues

Class com.acsinet_solutions.util.exception.VersionMismatchException extends SystemException implements Serializable

Serialized Fields

_id

long _id
The registry id.


Package com.acsinet_solutions.util.log

Class com.acsinet_solutions.util.log.Log4JLoggingEventWrapper extends org.apache.log4j.spi.LoggingEvent implements Serializable

Serialized Fields

_event

org.apache.log4j.spi.LoggingEvent _event
The not-null delegated LoggingEvent instance.


Package com.acsinet_solutions.util.regexp

Class com.acsinet_solutions.util.regexp.RegexpMatchException extends java.lang.Exception implements Serializable


Package com.acsinet_solutions.util.text

Class com.acsinet_solutions.util.text.Code extends java.lang.Object implements Serializable

Serialized Fields

_str

java.lang.String _str
The original maybe-null string value. This reference is kept for fast toString() conversion.


_number

int _number
The original positive int value; -1 if no int value is provided.


_text

java.lang.String _text
The original maybe null text value.

Class com.acsinet_solutions.util.text.TransferableText extends java.lang.Object implements Serializable

Serialization Methods

writeObject

private void writeObject(java.io.ObjectOutputStream ostream)
                  throws java.io.IOException
Update the transient fields so no information is lost when serialized

Throws:
java.io.IOException
Serialized Fields

_asString

java.lang.String _asString

_type

java.lang.String _type

Package com.acsinet_solutions.util.validator

Class com.acsinet_solutions.util.validator.LocalizedValidationIssue extends java.lang.Object implements Serializable

Serialized Fields

_key

java.lang.String _key
The validation issue key


_args

java.lang.Object[] _args
Argument array

Class com.acsinet_solutions.util.validator.SimpleValidationIssue extends java.lang.Object implements Serializable

Serialized Fields

_text

java.lang.String _text
Validation text