1 /** 2 * Copyright 2011 The Kuali Foundation Licensed under the 3 * Educational Community License, Version 2.0 (the "License"); you may 4 * not use this file except in compliance with the License. You may 5 * obtain a copy of the License at 6 * 7 * http://www.osedu.org/licenses/ECL-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, 10 * software distributed under the License is distributed on an "AS IS" 11 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express 12 * or implied. See the License for the specific language governing 13 * permissions and limitations under the License. 14 */ 15 package org.kuali.mobility.events.entity; 16 17 import java.util.List; 18 19 public interface Category { 20 21 /* (non-Javadoc) 22 * @see org.kuali.mobility.events.entity.Category#getReturnPage() 23 */ 24 public abstract String getReturnPage(); 25 26 /* (non-Javadoc) 27 * @see org.kuali.mobility.events.entity.Category#setReturnPage(java.lang.String) 28 */ 29 public abstract void setReturnPage(String returnPage); 30 31 /* (non-Javadoc) 32 * @see org.kuali.mobility.events.entity.Category#getDays() 33 */ 34 public abstract List<? extends Day> getDays(); 35 36 /* (non-Javadoc) 37 * @see org.kuali.mobility.events.entity.Category#setDays(java.util.List) 38 */ 39 public abstract void setDays(List<? extends Day> days); 40 41 /* (non-Javadoc) 42 * @see org.kuali.mobility.events.entity.Category#getCategoryId() 43 */ 44 public abstract String getCategoryId(); 45 46 /* (non-Javadoc) 47 * @see org.kuali.mobility.events.entity.Category#setCategoryId(java.lang.String) 48 */ 49 public abstract void setCategoryId(String categoryId); 50 51 /* (non-Javadoc) 52 * @see org.kuali.mobility.events.entity.Category#getTitle() 53 */ 54 public abstract String getTitle(); 55 56 /* (non-Javadoc) 57 * @see org.kuali.mobility.events.entity.Category#setTitle(java.lang.String) 58 */ 59 public abstract void setTitle(String title); 60 61 /* (non-Javadoc) 62 * @see org.kuali.mobility.events.entity.Category#getOrder() 63 */ 64 public abstract int getOrder(); 65 66 /* (non-Javadoc) 67 * @see org.kuali.mobility.events.entity.Category#setOrder(int) 68 */ 69 public abstract void setOrder(int order); 70 71 /* (non-Javadoc) 72 * @see org.kuali.mobility.events.entity.Category#getCampus() 73 */ 74 public abstract String getCampus(); 75 76 /* (non-Javadoc) 77 * @see org.kuali.mobility.events.entity.Category#setCampus(java.lang.String) 78 */ 79 public abstract void setCampus(String campus); 80 81 public abstract String getUrlString(); 82 83 public abstract void setUrlString(String url); 84 85 public abstract boolean getHasEvents(); 86 87 public abstract void setHasEvents(boolean hasEvents); 88 }