Uses of Class
org.apache.wicket.MetaDataKey
-
Packages that use MetaDataKey Package Description org.apache.wicket The core Wicket package.org.apache.wicket.csp org.apache.wicket.markup.html.debug org.apache.wicket.markup.html.form HTML Forms and form components.org.apache.wicket.markup.parser The default parsing engine of Wicket.org.apache.wicket.mock org.apache.wicket.pageStore org.apache.wicket.request.cycle org.apache.wicket.request.resource org.apache.wicket.request.resource.caching org.apache.wicket.resource Locale aware resouce loaders. -
-
Uses of MetaDataKey in org.apache.wicket
Methods in org.apache.wicket with parameters of type MetaDataKey Modifier and Type Method Description <T> T
Application. getMetaData(MetaDataKey<T> key)
Gets metadata for this application using the given key.<M extends Serializable>
MComponent. getMetaData(MetaDataKey<M> key)
Gets metadata for this component using the given key.<T extends B>
TIMetadataContext. getMetaData(MetaDataKey<T> key)
<M extends Serializable>
MSession. getMetaData(MetaDataKey<M> key)
Gets metadata for this session using the given key.<T> Application
Application. setMetaData(MetaDataKey<T> key, T object)
Sets the metadata for this application using the given key.<M extends Serializable>
ComponentComponent. setMetaData(MetaDataKey<M> key, M object)
Sets the metadata for this component using the given key.<T extends B>
RIMetadataContext. setMetaData(MetaDataKey<T> key, T data)
<M extends Serializable>
SessionSession. setMetaData(MetaDataKey<M> key, M object)
Sets the metadata for this session using the given key.Constructors in org.apache.wicket with parameters of type MetaDataKey Constructor Description MetaDataEntry(MetaDataKey<T> key, Object object)
Construct. -
Uses of MetaDataKey in org.apache.wicket.csp
Fields in org.apache.wicket.csp declared as MetaDataKey Modifier and Type Field Description static MetaDataKey<String>
ContentSecurityPolicySettings. NONCE_KEY
-
Uses of MetaDataKey in org.apache.wicket.markup.html.debug
Fields in org.apache.wicket.markup.html.debug declared as MetaDataKey Modifier and Type Field Description static MetaDataKey<Long>
PageView. RENDER_KEY
A meta data key used by RenderPerformaceListener in wicket-devutils to collect the time needed by a component to render itself -
Uses of MetaDataKey in org.apache.wicket.markup.html.form
Fields in org.apache.wicket.markup.html.form declared as MetaDataKey Modifier and Type Field Description static MetaDataKey<AutoLabelResolver.AutoLabelMarker>
AutoLabelResolver. MARKER_KEY
-
Uses of MetaDataKey in org.apache.wicket.markup.parser
Fields in org.apache.wicket.markup.parser declared as MetaDataKey Modifier and Type Field Description protected static MetaDataKey<Map<String,AtomicInteger>>
AbstractMarkupFilter. REQUEST_COUNTER_KEY
A key for a request-relative map of counters. -
Uses of MetaDataKey in org.apache.wicket.mock
Methods in org.apache.wicket.mock with parameters of type MetaDataKey Modifier and Type Method Description <T> T
MockPageContext. getRequestData(MetaDataKey<T> key, Supplier<T> defaultValue)
<T extends Serializable>
TMockPageContext. getSessionData(MetaDataKey<T> key, Supplier<T> defaultValue)
-
Uses of MetaDataKey in org.apache.wicket.pageStore
Methods in org.apache.wicket.pageStore that return MetaDataKey Modifier and Type Method Description protected MetaDataKey<InSessionPageStore.SessionData>
InSessionPageStore. getKey()
Session data is stored under aMetaDataKey
.Methods in org.apache.wicket.pageStore with parameters of type MetaDataKey Modifier and Type Method Description <T> T
DefaultPageContext. getRequestData(MetaDataKey<T> key, Supplier<T> defaultValue)
<T> T
IPageContext. getRequestData(MetaDataKey<T> key, Supplier<T> defaultValue)
Get data from the current request cycle.<T extends Serializable>
TDefaultPageContext. getSessionData(MetaDataKey<T> key, Supplier<T> defaultValue)
<T extends Serializable>
TIPageContext. getSessionData(MetaDataKey<T> key, Supplier<T> defaultValue)
Get metadata from the session. -
Uses of MetaDataKey in org.apache.wicket.request.cycle
Fields in org.apache.wicket.request.cycle declared as MetaDataKey Modifier and Type Field Description static MetaDataKey<IPageRequestHandler>
PageRequestHandlerTracker. FIRST_HANDLER_KEY
The key for the first handlerstatic MetaDataKey<IPageRequestHandler>
PageRequestHandlerTracker. LAST_HANDLER_KEY
The key for the last handlerMethods in org.apache.wicket.request.cycle with parameters of type MetaDataKey Modifier and Type Method Description <T> T
RequestCycle. getMetaData(MetaDataKey<T> key)
Gets metadata for this request cycle using the given key.<T> RequestCycle
RequestCycle. setMetaData(MetaDataKey<T> key, T object)
Sets the metadata for this request cycle using the given key. -
Uses of MetaDataKey in org.apache.wicket.request.resource
Fields in org.apache.wicket.request.resource declared as MetaDataKey Modifier and Type Field Description static MetaDataKey<Long>
AbstractResource. CONTENT_RANGE_ENDBYTE
The meta data key of the content range end bytestatic MetaDataKey<Long>
AbstractResource. CONTENT_RANGE_STARTBYTE
The meta data key of the content range start byte -
Uses of MetaDataKey in org.apache.wicket.request.resource.caching
Fields in org.apache.wicket.request.resource.caching declared as MetaDataKey Modifier and Type Field Description static MetaDataKey<String>
IResourceCachingStrategy. URL_VERSION
A key used to store the extracted resource's version in IResourceCachingStrategy.undecorateUrl(ResourceUrl) into the request cycle -
Uses of MetaDataKey in org.apache.wicket.resource
Fields in org.apache.wicket.resource declared as MetaDataKey Modifier and Type Field Description static MetaDataKey<Map<String,FileSystem>>
FileSystemJarPathService. FILE_SYSTEM_META_DATA_KEY
The key for the file system meta data
-