001    /*
002     * Copyright 2006-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    
017    package org.kuali.rice.kim.bo.ui;
018    
019    import org.kuali.rice.core.framework.persistence.jpa.CompositePrimaryKeyBase;
020    
021    import javax.persistence.Column;
022    import javax.persistence.Id;
023    
024    /**
025     * This is a description of what this class does - jksmith don't forget to fill this in. 
026     * 
027     * @author Kuali Rice Team (rice.collab@kuali.org)
028     *
029     */
030    public class KimDocumentRoleResponsibilityId extends CompositePrimaryKeyBase {
031            @Id
032        @Column(name="FDOC_NBR")
033        protected String documentNumber;
034            
035            @Id
036            @Column(name="ROLE_RSP_ID")
037            protected String roleResponsibilityId;
038    
039            /**
040             * @return the documentNumber
041             */
042            public String getDocumentNumber() {
043                    return this.documentNumber;
044            }
045    
046            /**
047             * @return the delegationId
048             */
049            public String getRoleResponsibilityId() {
050                    return this.roleResponsibilityId;
051            }
052    }