Package org.glassfish.enterprise.ha.store.annotations

Examples of org.glassfish.enterprise.ha.store.annotations.HashKey


                        Version versionAnn = m.getAnnotation(Version.class);
                        if (versionAnn != null) {
                            attributeName = versionAnn.name();
                            methodInfo.type = MethodInfo.MethodType.VERSION;
                        } else {
                            HashKey hashKeyAnn = m.getAnnotation(HashKey.class);
                            if (hashKeyAnn != null) {
                                attributeName = hashKeyAnn.name();
                                methodInfo.type = MethodInfo.MethodType.HASHKEY;
                            } else {
                                MappedAttribute mappedAttrAnn = m.getAnnotation(MappedAttribute.class);
                                if (mappedAttrAnn != null) {
                                    attributeName = mappedAttrAnn.mappedTo();
View Full Code Here

TOP

Related Classes of org.glassfish.enterprise.ha.store.annotations.HashKey

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.