Uses of Class
org.jboss.ejb.client.AttachmentKey
Packages that use AttachmentKey
-
Uses of AttachmentKey in org.jboss.ejb._private
Fields in org.jboss.ejb._private declared as AttachmentKeyModifier and TypeFieldDescriptionstatic final AttachmentKey<org.wildfly.security.auth.client.AuthenticationContext>static final AttachmentKey<org.wildfly.naming.client.NamingProvider> -
Uses of AttachmentKey in org.jboss.ejb.client
Fields in org.jboss.ejb.client declared as AttachmentKeyModifier and TypeFieldDescriptionstatic final AttachmentKey<Boolean>AttachmentKeys.COMPRESS_RESPONSEDeprecated.static final AttachmentKey<Boolean>AttachmentKeys.HINTS_DISABLEDDeprecated.static final AttachmentKey<Integer>AttachmentKeys.RESPONSE_COMPRESSION_LEVELDeprecated.static final AttachmentKey<TransactionID>AttachmentKeys.TRANSACTION_ID_KEYDeprecated.static final AttachmentKey<Transaction>AttachmentKeys.TRANSACTION_KEYThe attachment key for transaction propagation.static final AttachmentKey<CompressionHint>AttachmentKeys.VIEW_CLASS_DATA_COMPRESSION_HINT_ATTACHMENT_KEYDeprecated.static final AttachmentKey<Map<Method,CompressionHint>> AttachmentKeys.VIEW_METHOD_DATA_COMPRESSION_HINT_ATTACHMENT_KEYDeprecated.static final AttachmentKey<Affinity>AttachmentKeys.WEAK_AFFINITYThe preferred node or cluster for invocations from this proxy.Methods in org.jboss.ejb.client that return types with arguments of type AttachmentKeyModifier and TypeMethodDescriptionMap<AttachmentKey<?>,?> Attachable.getAttachments()Returns the attachments applicable for thisAttachable.Methods in org.jboss.ejb.client with parameters of type AttachmentKeyModifier and TypeMethodDescription<T> TAttachable.getAttachment(AttachmentKey<T> key) Get an attachment from this object.static <T> TEJBClient.getProxyAttachment(Object proxy, AttachmentKey<T> attachmentKey) Get a proxy attachment.<T> TEJBClientInvocationContext.getProxyAttachment(AttachmentKey<T> key) Get a value attached to the proxy.<T> TAttachable.putAttachment(AttachmentKey<T> key, T value) Set an attachment on this object.<T> TAttachable.putAttachmentIfAbsent(AttachmentKey<T> key, T value) Set an attachment on this object if an existing attachment does not already exist.static <T> TEJBClient.putProxyAttachment(Object proxy, AttachmentKey<T> attachmentKey, T newValue) Set a proxy attachment.static <T> TEJBClient.putProxyAttachmentIfAbsent(Object proxy, AttachmentKey<T> attachmentKey, T newValue) Set a proxy attachment if it is not already set.<T> TAttachable.removeAttachment(AttachmentKey<T> key) Remove and return an attachment value.<T> booleanAttachable.removeAttachment(AttachmentKey<T> key, T value) Remove an attachment if it has a certain value.static <T> TEJBClient.removeProxyAttachment(Object proxy, AttachmentKey<T> attachmentKey) Remove a proxy attachment.static <T> booleanEJBClient.removeProxyAttachment(Object proxy, AttachmentKey<T> attachmentKey, T oldValue) Remove a proxy attachment with a particular value.<T> TEJBClientInvocationContext.removeProxyAttachment(AttachmentKey<T> key) Remove a value attached to the proxy.<T> TAttachable.replaceAttachment(AttachmentKey<T> key, T value) Replace an attachment on this object if an existing attachment exists.<T> booleanAttachable.replaceAttachment(AttachmentKey<T> key, T oldValue, T newValue) Replace an attachment on this object if an existing attachment exists with a certain value.static <T> TEJBClient.replaceProxyAttachment(Object proxy, AttachmentKey<T> attachmentKey, T newValue) Replace a proxy attachment if it is already present.static <T> booleanEJBClient.replaceProxyAttachment(Object proxy, AttachmentKey<T> attachmentKey, T oldValue, T newValue) Replace a proxy attachment if it is already present.