Package org.apache.deltaspike.data.api

Examples of org.apache.deltaspike.data.api.SingleResultType


    private static final class SingleResultQueryProcessor implements QueryProcessor
    {
        @Override
        public Object executeQuery(Query query, CdiQueryInvocationContext context)
        {
            SingleResultType style = context.getSingleResultStyle();
            switch (style)
            {
                case JPA:
                    return query.getSingleResult();
                case OPTIONAL:
View Full Code Here

TOP

Related Classes of org.apache.deltaspike.data.api.SingleResultType

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.