se.sj.stina.domain.model
Interface SjProtocol

All Superinterfaces:
java.lang.Cloneable, java.lang.Comparable, java.io.Serializable, TiCommonModelPartInterface, TiContainerModelPartInterface, TiGeneratedModelInterface, TiListModelPartInterface, TiMapModelInterface, TiMapModelPartInterface, TiMapPlainInterface, TiMapPropInterface, TiModelConstantsInterface, TiModelInterface, TiObserverInterface, TiPrimitiveModelPartInterface, TiPropertyPartInterface, TiSubjectInterface
All Known Implementing Classes:
SjProtocolPlain, SjProtocolStandard

public interface SjProtocol
extends TiMapModelInterface, TiModelInterface, TiGeneratedModelInterface

Information om protokoll och komprimering av data som skickas mellan klient och server.


Compressed - Anger om data komprimeras
Algorithm - Algoritm för komprimering
Encoding - Name of charset used for string to byte conversions
CachePolicy - Name of policy used for cache management


Field Summary
static java.lang.String ALGORITHM
           
static java.lang.String CACHE_POLICY
           
static java.lang.String COMPRESSED
           
static java.lang.String ENCODING
           
 
Fields inherited from interface org.stina.framework.core.model.TiModelConstantsInterface
ACTIVATED_ELEMENT_PROPERTY, BACKGROUND_COLOR, BOOLEAN_LIST, BYTE_ARRAY_LIST, COLUMN_WIDTH, DEFAULT_VALUE, DISALLOWED_VALUES, DISPLAY_MODE_PROPERTY, EDITABLE, ENABLED, FALSE_MNEMONIC_KEY, FALSE_TEXT, FONT, FORCE_UPDATE, FOREGROUND_COLOR, HORIZONTAL_ALIGNMENT, INTEGER_LIST, LONG_LIST, LONG_LONG_LIST, MAX_VALUE, MIN_VALUE, MNEMONIC_KEY, NO_RESTORE_OF_FIELD, OBJECT_LIST, OBJECT_REFERENCE_LIST, PLAIN_TEXT, PLAIN_VALUES, POSSIBLE_VALUES, PROHIBIT_HTML_FILTER, ROW_HEIGHT, SELECTABLE, SELECTED_ELEMENT_PROPERTY, SELECTED_ELEMENTS, SELECTED_PROPERTY, STRING_LIST, TIBOOLEAN_FALSE, TIBOOLEAN_TRUE, TIINTEGER_0, TISTRING_EMPTY, TOOLTIP_TEXT, TRUE_MNEMONIC_KEY, TRUE_TEXT, VERTICAL_ALIGNMENT
 
Method Summary
 TiStringInterface getAlgorithm()
          Field algorithm is defined as optional.
 java.lang.String getAlgorithmValue()
          Field algorithm is defined as optional.
 TiStringInterface getCachePolicy()
          Field cachePolicy is defined as optional.
 java.lang.String getCachePolicyValue()
          Field cachePolicy is defined as optional.
 TiBooleanInterface getCompressed()
          Field compressed is defined as mandatory.
 java.lang.Boolean getCompressedValue()
          Field compressed is defined as mandatory.
 TiStringInterface getEncoding()
          Field encoding is defined as optional.
 java.lang.String getEncodingValue()
          Field encoding is defined as optional.
 TiStringInterface lookupAlgorithm()
          Field algorithm is defined as optional.
 TiStringInterface lookupCachePolicy()
          Field cachePolicy is defined as optional.
 TiBooleanInterface lookupCompressed()
          Field compressed is defined as mandatory.
 TiStringInterface lookupEncoding()
          Field encoding is defined as optional.
 void setAlgorithm(TiStringInterface inData)
          Field algorithm is defined as optional.
 void setAlgorithmValue(java.lang.String inData)
          Field algorithm is defined as optional.
 void setAlgorithmValue(java.lang.String inData, boolean inNotify)
          Field algorithm is defined as optional.
 void setCachePolicy(TiStringInterface inData)
          Field cachePolicy is defined as optional.
 void setCachePolicyValue(java.lang.String inData)
          Field cachePolicy is defined as optional.
 void setCachePolicyValue(java.lang.String inData, boolean inNotify)
          Field cachePolicy is defined as optional.
 void setCompressed(TiBooleanInterface inData)
          Field compressed is defined as mandatory.
 void setCompressedValue(java.lang.Boolean inData)
          Field compressed is defined as mandatory.
 void setCompressedValue(java.lang.Boolean inData, boolean inNotify)
          Field compressed is defined as mandatory.
 void setEncoding(TiStringInterface inData)
          Field encoding is defined as optional.
 void setEncodingValue(java.lang.String inData)
          Field encoding is defined as optional.
 void setEncodingValue(java.lang.String inData, boolean inNotify)
          Field encoding is defined as optional.
 
Methods inherited from interface org.stina.framework.core.model.TiMapPlainInterface
clear, getAssignedFieldNames, getComparator, getFieldNames, getModelImpl, getXorNameForXorPart, getXorPartNames, hasField, isEmpty, lookupFieldObject, lookupModelImpl, toDebugString
 
Methods inherited from interface org.stina.framework.core.model.TiMapModelPartInterface
getIncludeIfOptional, getIndexForXorPart, lookupModel, setIncludeIfOptional, setUpdateXorFieldEnabled
 
Methods inherited from interface org.stina.framework.core.model.TiContainerModelPartInterface
getModel, setModel
 
Methods inherited from interface org.stina.framework.core.model.TiCommonModelPartInterface
clone, disposeModel, equalsModel, getGeneratedTiName, getRealTiName, getValue, importValue, importValue, setValue, setValue, toDebugString, update, update
 
Methods inherited from interface java.lang.Comparable
compareTo
 
Methods inherited from interface org.stina.framework.core.model.TiPropertyPartInterface
getProperty, getPropertyModel, getPropertyNames, isEnabled, removeProperties, removeProperty, removeProperty, setEnabled, setEnabled, setProperty, setProperty, specifyProperties
 
Methods inherited from interface org.stina.framework.support.observer.TiObserverInterface
updateObserver
 
Methods inherited from interface org.stina.framework.core.model.TiListModelPartInterface
addModelElement, addModelElement, addModelElements, addModelElements, containsModelElement, getIndexOf, getIndexOfEqualsModel, getIndexOfInstance, getLastIndexOf, getListSize, getModelElementAt, getModelElements, insertModelElementAt, insertModelElementAt, moveModelElementOfInstance, moveModelElementOfInstance, removeAllModelElements, removeAllModelElements, removeModelElement, removeModelElement, removeModelElementAt, removeModelElementAt, setModelElementAt, setModelElementAt, setModelElements, setModelElements
 
Methods inherited from interface org.stina.framework.support.observer.TiSubjectInterface
attachObserver, clone, detachObserver, getObserverCount, isObserverAttached, lookupObservers, lookupObserversLock, notifyObservers, toDebugString
 

Field Detail

COMPRESSED

static final java.lang.String COMPRESSED
See Also:
Constant Field Values

ALGORITHM

static final java.lang.String ALGORITHM
See Also:
Constant Field Values

ENCODING

static final java.lang.String ENCODING
See Also:
Constant Field Values

CACHE_POLICY

static final java.lang.String CACHE_POLICY
See Also:
Constant Field Values
Method Detail

getCompressed

TiBooleanInterface getCompressed()
Field compressed is defined as mandatory.


lookupCompressed

TiBooleanInterface lookupCompressed()
Field compressed is defined as mandatory.


setCompressed

void setCompressed(TiBooleanInterface inData)
Field compressed is defined as mandatory.


getCompressedValue

java.lang.Boolean getCompressedValue()
Field compressed is defined as mandatory.


setCompressedValue

void setCompressedValue(java.lang.Boolean inData)
Field compressed is defined as mandatory.


setCompressedValue

void setCompressedValue(java.lang.Boolean inData,
                        boolean inNotify)
Field compressed is defined as mandatory.


getAlgorithm

TiStringInterface getAlgorithm()
Field algorithm is defined as optional.


lookupAlgorithm

TiStringInterface lookupAlgorithm()
Field algorithm is defined as optional.


setAlgorithm

void setAlgorithm(TiStringInterface inData)
Field algorithm is defined as optional.


getAlgorithmValue

java.lang.String getAlgorithmValue()
Field algorithm is defined as optional.


setAlgorithmValue

void setAlgorithmValue(java.lang.String inData)
Field algorithm is defined as optional.


setAlgorithmValue

void setAlgorithmValue(java.lang.String inData,
                       boolean inNotify)
Field algorithm is defined as optional.


getEncoding

TiStringInterface getEncoding()
Field encoding is defined as optional.


lookupEncoding

TiStringInterface lookupEncoding()
Field encoding is defined as optional.


setEncoding

void setEncoding(TiStringInterface inData)
Field encoding is defined as optional.


getEncodingValue

java.lang.String getEncodingValue()
Field encoding is defined as optional.


setEncodingValue

void setEncodingValue(java.lang.String inData)
Field encoding is defined as optional.


setEncodingValue

void setEncodingValue(java.lang.String inData,
                      boolean inNotify)
Field encoding is defined as optional.


getCachePolicy

TiStringInterface getCachePolicy()
Field cachePolicy is defined as optional.


lookupCachePolicy

TiStringInterface lookupCachePolicy()
Field cachePolicy is defined as optional.


setCachePolicy

void setCachePolicy(TiStringInterface inData)
Field cachePolicy is defined as optional.


getCachePolicyValue

java.lang.String getCachePolicyValue()
Field cachePolicy is defined as optional.


setCachePolicyValue

void setCachePolicyValue(java.lang.String inData)
Field cachePolicy is defined as optional.


setCachePolicyValue

void setCachePolicyValue(java.lang.String inData,
                         boolean inNotify)
Field cachePolicy is defined as optional.



Copyright © 2012. All Rights Reserved.