Uses of Interface
org.marketcetera.util.ws.tags.TagFilter
-
Packages that use TagFilter Package Description org.marketcetera.util.ws.stateful Web services infrastructure.org.marketcetera.util.ws.stateless Infrastructure for stateless communication between client and server.org.marketcetera.util.ws.tags Tags used to identify aspects of web services, and filters for those tags. -
-
Uses of TagFilter in org.marketcetera.util.ws.stateful
Fields in org.marketcetera.util.ws.stateful declared as TagFilter Modifier and Type Field Description private TagFilterRemoteCall. mSessionIdFilterMethods in org.marketcetera.util.ws.stateful that return TagFilter Modifier and Type Method Description TagFilterRemoteCall. getSessionIdFilter()Returns the receiver's session ID filter.Constructors in org.marketcetera.util.ws.stateful with parameters of type TagFilter Constructor Description RemoteCall(TagFilter versionIdFilter, TagFilter appIdFilter, TagFilter clientIdFilter, SessionManager<T> sessionManager, TagFilter sessionIdFilter)Creates a new wrapper which uses the given (optional) session manager for session ID mappings, and which applies the given filters to the client context.RemoteCaller(TagFilter versionIdFilter, TagFilter appIdFilter, TagFilter clientIdFilter, SessionManager<S> sessionManager, TagFilter sessionIdFilter)Creates a new wrapper which uses the given (optional) session manager for session ID mappings, and which applies the given filters to the client context.RemoteRunner(TagFilter versionIdFilter, TagFilter appIdFilter, TagFilter clientIdFilter, SessionManager<S> sessionManager, TagFilter sessionIdFilter)Creates a new wrapper which uses the given (optional) session manager for session ID mappings, and which applies the given filters to the client context. -
Uses of TagFilter in org.marketcetera.util.ws.stateless
Fields in org.marketcetera.util.ws.stateless declared as TagFilter Modifier and Type Field Description private TagFilterStatelessRemoteCall. mAppIdFilterprivate TagFilterStatelessRemoteCall. mClientIdFilterprivate TagFilterStatelessRemoteCall. mVersionIdFilterMethods in org.marketcetera.util.ws.stateless that return TagFilter Modifier and Type Method Description TagFilterStatelessRemoteCall. getAppIdFilter()Returns the receiver's application ID filter.TagFilterStatelessRemoteCall. getClientIdFilter()Returns the receiver's client ID filter.TagFilterStatelessRemoteCall. getVersionIdFilter()Returns the receiver's version ID filter.Methods in org.marketcetera.util.ws.stateless with parameters of type TagFilter Modifier and Type Method Description protected static voidStatelessRemoteCall. assertFilterMatch(TagFilter filter, Tag tag)Asserts that the given filter matches the given tag.Constructors in org.marketcetera.util.ws.stateless with parameters of type TagFilter Constructor Description StatelessRemoteCall(TagFilter versionIdFilter, TagFilter appIdFilter, TagFilter clientIdFilter)Creates a new wrapper which applies the given filters to the client context.StatelessRemoteCaller(TagFilter versionIdFilter, TagFilter appIdFilter, TagFilter clientIdFilter)Creates a new wrapper which applies the given filters to the client context.StatelessRemoteRunner(TagFilter versionIdFilter, TagFilter appIdFilter, TagFilter clientIdFilter)Creates a new wrapper which applies the given filters to the client context. -
Uses of TagFilter in org.marketcetera.util.ws.tags
Classes in org.marketcetera.util.ws.tags that implement TagFilter Modifier and Type Class Description classEqualsTagFilterA tag filter that accepts any tag that is equal to a specific target tag (which may be the null tag).classNonNullTagFilterA tag filter that accepts any non-null tag.classPassThruTagFilterA tag filter that accepts all tags.classValidSessionTagFilter<T>A session ID filter that accepts any ID which maps to an active session.
-