Java tutorial
/* * Kuali Coeus, a comprehensive research administration system for higher education. * * Copyright 2005-2015 Kuali, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kra.award.awardhierarchy.sync.helpers; import org.apache.commons.lang3.StringUtils; import org.kuali.kra.award.awardhierarchy.sync.AwardSyncChange; import org.kuali.kra.award.awardhierarchy.sync.AwardSyncType; import org.kuali.kra.award.home.Award; import org.kuali.rice.krad.bo.PersistableBusinessObject; /** * Award Hierarchy Sync Helper for the Award itself. */ public class AwardSyncAwardHelper extends AwardSyncHelperBase { public static final String SPONSOR_CODE_ATTR = "sponsorCode"; public static final String STATUS_CODE_ATTR = "statusCode"; @Override public void applySyncChange(Award award, AwardSyncChange change) throws NoSuchFieldException { if (StringUtils.equals(change.getSyncType(), AwardSyncType.ADD_SYNC.getSyncValue())) { if (StringUtils.equalsIgnoreCase(change.getAttrName(), SPONSOR_CODE_ATTR)) { award.setSponsorCode((String) change.getXmlExport().getValues().get(change.getAttrName())); } else if (StringUtils.equalsIgnoreCase(change.getAttrName(), STATUS_CODE_ATTR)) { award.setStatusCode((Integer) change.getXmlExport().getValues().get(change.getAttrName())); } else { throw new NoSuchFieldException(); } } } @Override protected String getObjectDesc(PersistableBusinessObject syncableObject, String attrName) { if (StringUtils.equalsIgnoreCase(attrName, SPONSOR_CODE_ATTR)) { return "Sponsor"; } else if (StringUtils.equalsIgnoreCase(attrName, STATUS_CODE_ATTR)) { return "Award Status"; } else { return null; } } @Override protected String getDataDesc(PersistableBusinessObject syncableObject, String attrName) { Award award = (Award) syncableObject; if (StringUtils.equalsIgnoreCase(attrName, SPONSOR_CODE_ATTR)) { return award.getSponsorCode() + " : " + award.getSponsorName(); } else if (StringUtils.equalsIgnoreCase(attrName, STATUS_CODE_ATTR)) { award.refreshReferenceObject("awardStatus"); return award.getAwardStatus().getDescription(); } else { return null; } } }