001    /*
002     * Copyright 2011 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     */
016    package org.kuali.kfs.module.purap.identity;
017    
018    import org.kuali.kfs.module.purap.businessobject.SensitiveData;
019    import org.kuali.kfs.sys.identity.KfsKimAttributes;
020    
021    public class PurapKimAttributes extends KfsKimAttributes {
022    
023        public static final String SENSITIVE_DATA_CODE = "sensitiveDataCode";
024        public static final String ACCOUNTS_PAYABLE_PURCHASING_DOCUMENT_LINK_IDENTIFIER = "accountsPayablePurchasingDocumentLinkIdentifier";
025        public static final String DOCUMENT_SENSITIVE = "documentSensitive";
026    
027        protected String sensitiveDataCode;
028        protected boolean documentSensitive;
029    
030        protected SensitiveData sensitiveData;
031    
032        public String getSensitiveDataCode() {
033            return sensitiveDataCode;
034        }
035    
036        public void setSensitiveDataCode(String sensitiveDataCode) {
037            this.sensitiveDataCode = sensitiveDataCode;
038        }
039    
040        public boolean isDocumentSensitive() {
041            return documentSensitive;
042        }
043    
044        public void setDocumentSensitive(boolean documentSensitive) {
045            this.documentSensitive = documentSensitive;
046        }
047    
048        public SensitiveData getSensitiveData() {
049            return sensitiveData;
050        }
051    
052        public void setSensitiveData(SensitiveData sensitiveData) {
053            this.sensitiveData = sensitiveData;
054        }
055        
056        
057    }