001    /**
002     * Copyright 2010-2013 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.common.util;
017    
018    public class MetaInfResource {
019    
020            String key;
021            String location;
022            long size = -1;
023            long lines = -1;
024    
025            public String getLocation() {
026                    return location;
027            }
028    
029            public void setLocation(String location) {
030                    this.location = location;
031            }
032    
033            public long getSize() {
034                    return size;
035            }
036    
037            public void setSize(long size) {
038                    this.size = size;
039            }
040    
041            public long getLines() {
042                    return lines;
043            }
044    
045            public void setLines(long lines) {
046                    this.lines = lines;
047            }
048    
049            public String getKey() {
050                    return key;
051            }
052    
053            public void setKey(String key) {
054                    this.key = key;
055            }
056    
057    }