HolidayCalendarBean.java~7~
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package com.cwj.meetings;
  2. import javax.ejb.*;
  3. import java.util.*;
  4. public class HolidayCalendarBean implements SessionBean {
  5.   SessionContext sessionContext;
  6.   public void ejbCreate() throws CreateException {
  7.     /**@todo Complete this method*/
  8.   }
  9.   public void ejbRemove() {
  10.     /**@todo Complete this method*/
  11.   }
  12.   public void ejbActivate() {
  13.     /**@todo Complete this method*/
  14.   }
  15.   public void ejbPassivate() {
  16.     /**@todo Complete this method*/
  17.   }
  18.   public void setSessionContext(SessionContext sessionContext) {
  19.     this.sessionContext = sessionContext;
  20.   }
  21.   public boolean isCompanyHoliday(java.util.Date date) {
  22.     Calendar cal=Calendar.getInstance();
  23.     cal.setTime(date);
  24.     int dayOfWeek=cal.get(Calendar.DAY_OF_WEEK);
  25.     if((dayOfWeek==Calendar.SATURDAY)||(dayOfWeek==Calendar.SUNDAY)){
  26.       return true;
  27.     }
  28.     return false;
  29.   }
  30. }