Package org.fcrepo.server.types.gen

Examples of org.fcrepo.server.types.gen.FieldSearchResult


                 * fType and bDef in field search, which are no longer
                 * available.
                 */
                throw new UnsupportedOperationException("This operation uses obsolete field search semantics");
            }
            FieldSearchResult result =
                    APIA.findObjects(TypeUtility.convertStringtoAOS(fields),
                                     new BigInteger("50"),
                                     query);
            while (result != null) {
                ResultList resultList = result.getResultList();
                if (resultList != null) {
                    for (ObjectFields element : resultList.getObjectFields()) {
                        labelMap.put(element.getPid().getValue(), element.getLabel().getValue());
                    }
                }
                if (result.getListSession() != null) {
                    result =
                            APIA.resumeFindObjects(result.getListSession().getValue()
                                    .getToken());
                } else {
                    result = null;
                }
            }
View Full Code Here

TOP

Related Classes of org.fcrepo.server.types.gen.FieldSearchResult

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.