Uses of Interface
org.apache.mina.core.buffer.matcher.ClassNameMatcher
Packages that use ClassNameMatcher
Package
Description
Protocol codecs which uses Java object serilization and leads to rapid protocol implementation.
-
Uses of ClassNameMatcher in org.apache.mina.core.buffer
Fields in org.apache.mina.core.buffer with type parameters of type ClassNameMatcherModifier and TypeFieldDescriptionprivate final List<ClassNameMatcher>AbstractIoBuffer.acceptMatchersMethods in org.apache.mina.core.buffer with parameters of type ClassNameMatcherModifier and TypeMethodDescriptionAbstractIoBuffer.accept(ClassNameMatcher m) Accept class names where the supplied ClassNameMatcher matches for deserialization, unless they are otherwise rejected.abstract IoBufferIoBuffer.accept(ClassNameMatcher m) Accept class names where the supplied ClassNameMatcher matches for deserialization, unless they are otherwise rejected.IoBufferWrapper.accept(ClassNameMatcher m) Accept class names where the supplied ClassNameMatcher matches for deserialization, unless they are otherwise rejected.Method parameters in org.apache.mina.core.buffer with type arguments of type ClassNameMatcherModifier and TypeMethodDescriptionvoidAbstractIoBuffer.setMatchers(List<ClassNameMatcher> matchers) Set the list of class matchers for in incoming bufferabstract voidIoBuffer.setMatchers(List<ClassNameMatcher> matchers) Set the list of class matchers for in incoming buffervoidIoBufferWrapper.setMatchers(List<ClassNameMatcher> matchers) Set the list of class matchers for in incoming buffer -
Uses of ClassNameMatcher in org.apache.mina.core.buffer.matcher
Classes in org.apache.mina.core.buffer.matcher that implement ClassNameMatcherModifier and TypeClassDescriptionfinal classAClassNameMatcherthat matches on full class names.final classAClassNameMatcherthat uses regular expressions.final classAClassNameMatcherthat uses simplified regular expressions provided by org.apache.commons.io.FilenameUtils#wildcardMatch(String, String) -
Uses of ClassNameMatcher in org.apache.mina.filter.codec.serialization
Fields in org.apache.mina.filter.codec.serialization with type parameters of type ClassNameMatcherModifier and TypeFieldDescriptionprivate final List<ClassNameMatcher>ObjectSerializationDecoder.acceptMatchersThe classes we accept when deserializing a binary blobMethods in org.apache.mina.filter.codec.serialization with parameters of type ClassNameMatcherModifier and TypeMethodDescriptionvoidObjectSerializationCodecFactory.accept(ClassNameMatcher classNameMatcher) Accept class names where the supplied ClassNameMatcher matches for deserialization, unless they are otherwise rejected.voidObjectSerializationDecoder.accept(ClassNameMatcher classNameMatcher) Accept class names where the supplied ClassNameMatcher matches for deserialization, unless they are otherwise rejected.