Uses of Interface
org.apache.mina.core.buffer.matcher.ClassNameMatcher
-
Packages that use ClassNameMatcher Package Description org.apache.mina.core.buffer org.apache.mina.core.buffer.matcher org.apache.mina.filter.codec.serialization 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 ClassNameMatcher Modifier and Type Field Description private java.util.List<ClassNameMatcher>AbstractIoBuffer. acceptMatchersMethods in org.apache.mina.core.buffer with parameters of type ClassNameMatcher Modifier and Type Method Description IoBufferAbstractIoBuffer. 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.IoBufferIoBufferWrapper. 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 ClassNameMatcher Modifier and Type Method Description voidAbstractIoBuffer. setMatchers(java.util.List<ClassNameMatcher> matchers)Set the list of class matchers for in incoming bufferabstract voidIoBuffer. setMatchers(java.util.List<ClassNameMatcher> matchers)Set the list of class matchers for in incoming buffervoidIoBufferWrapper. setMatchers(java.util.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 ClassNameMatcher Modifier and Type Class Description classFullClassNameMatcherAClassNameMatcherthat matches on full class names.classRegexpClassNameMatcherAClassNameMatcherthat uses regular expressions.classWildcardClassNameMatcherAClassNameMatcherthat 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 ClassNameMatcher Modifier and Type Field Description private java.util.List<ClassNameMatcher>ObjectSerializationDecoder. acceptMatchersThe classes we accept when deserializing a binary blobMethods in org.apache.mina.filter.codec.serialization with parameters of type ClassNameMatcher Modifier and Type Method Description voidObjectSerializationCodecFactory. 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.
-