Examples of OUPointer


Examples of org.dspace.app.cris.model.jdyna.value.OUPointer

        List<RestrictedFieldWithLock> results = new ArrayList<RestrictedFieldWithLock>();
        String pdef_dept = ConfigurationManager.getProperty(CrisConstants.CFG_MODULE, "researcherpage.pdef.orgunit");
        for (RPProperty property : this.getDynamicField().getAnagrafica4view()
                .get(pdef_dept))
        {
            OUPointer pointer = (OUPointer) property.getValue();
            RestrictedFieldWithLock result = new RestrictedFieldWithLock();
            result.setValue(pointer.getObject().getDisplayValue());
            result.setVisibility(property.getVisibility());
            result.setLock(property.getLockDef());
            result.setAuthority(pointer.getObject().getCrisID());
            results.add(result);
        }
        return results;
    }
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.