001/* 002 * Copyright 2009 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.ole.integration.cg; 017 018import java.util.ArrayList; 019import java.util.Collection; 020import java.util.List; 021 022import org.apache.log4j.Logger; 023import org.kuali.ole.coa.businessobject.Account; 024import org.kuali.rice.kim.api.identity.Person; 025 026public class ContractsAndGrantsModuleServiceNoOp implements ContractsAndGrantsModuleService { 027 028 private Logger LOG = Logger.getLogger(getClass()); 029 030 public List<Integer> getAllAccountReponsiblityIds() { 031 LOG.warn( "Using No-Op " + getClass().getSimpleName() + " service." ); 032 return new ArrayList<Integer>(0); 033 } 034 035 public Person getProjectDirectorForAccount(String chartOfAccountsCode, String accountNumber) { 036 LOG.warn( "Using No-Op " + getClass().getSimpleName() + " service." ); 037 return null; 038 } 039 040 public Person getProjectDirectorForAccount(Account account) { 041 LOG.warn( "Using No-Op " + getClass().getSimpleName() + " service." ); 042 return null; 043 } 044 045 public boolean hasValidAccountReponsiblityIdIfNotNull(Account account) { 046 LOG.warn( "Using No-Op " + getClass().getSimpleName() + " service." ); 047 return true; 048 } 049 050 public boolean isAwardedByFederalAgency(String chartOfAccountsCode, String accountNumber, Collection<String> federalAgencyTypeCodes) { 051 LOG.warn( "Using No-Op " + getClass().getSimpleName() + " service." ); 052 return false; 053 } 054 055 //@Override 056 public List<String> getParentUnits(String unitNumber) { 057 LOG.warn( "Using No-Op " + getClass().getSimpleName() + " service." ); 058 return null; 059 } 060 061 @Override 062 public String getProposalNumberForAccountAndProjectDirector(String chartOfAccountsCode, String accountNumber, String projectDirectorId) { 063 LOG.warn( "Using No-Op " + getClass().getSimpleName() + " service." ); 064 return null; 065 } 066}