Examples of ACrisNestedObject


Examples of org.dspace.app.cris.model.jdyna.ACrisNestedObject

        {
            // nothing to do
            return;
        }

        ACrisNestedObject nested = (ACrisNestedObject) object;

        try
        {
            crisSearchService.indexNestedObject(nested, false);   
        }
        catch (Exception e)
        {
            log.error("Failed to update CRIS-NESTED metadata in discovery index for cris-nested:"
                    + nested.getDisplayValue() + " uuid:"+nested.getUuid());
            emailException(e);
        }
    }
View Full Code Here

Examples of org.dspace.app.cris.model.jdyna.ACrisNestedObject

        {
            // nothing to do
            return;
        }

        ACrisNestedObject nested = (ACrisNestedObject) object;

        try
        {
            crisSearchService.unIndexContent(null, nested, false);   
        }
        catch (Exception e)
        {
            log.error("Failed to remove CRIS-NESTED metadata in discovery index for cris-nested:"
                    + nested.getDisplayValue() + " uuid:"+nested.getUuid());
            emailException(e);
        }
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.