forked from sakaicontrib/attendance
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attribution is part of the ECLv2. Attribution was removed. This is bad. This commit adds back in the necessary attribution, where appropriate.
- Loading branch information
Leonardo Canessa
committed
Feb 9, 2016
1 parent
92a4373
commit 127b9a9
Showing
15 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
public interface AttendanceLogic { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ | |
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
public interface SakaiProxy { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ | |
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu]) | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ | |
* The AttendanceGrade earned for the all AttendanceItems | ||
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu]au) | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
@Data | ||
@NoArgsConstructor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,7 @@ | |
* An AttendanceStatus is a wrapper around the Status enum type defining meta information on individual Statuses. | ||
* | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
public interface AttendanceDao { | ||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ | |
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
public class AttendanceDaoImpl extends HibernateDaoSupport implements AttendanceDao { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,8 @@ | |
* Implementation of {@link AttendanceLogic} | ||
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
public class AttendanceLogicImpl implements AttendanceLogic { | ||
private static final Logger log = Logger.getLogger(AttendanceLogicImpl.class); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,8 @@ | |
* Implementation of our SakaiProxy API | ||
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
public class SakaiProxyImpl implements SakaiProxy { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ | |
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
public class BasePage extends WebPage implements IHeaderContributor { | ||
protected static final Logger log = Logger.getLogger(BasePage.class); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,7 @@ | |
* | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
public class Overview extends BasePage { | ||
private static final long serialVersionUID = 1L; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ | |
* | ||
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu] | ||
* @author David Bauer [dbauer1 (at) udayton (dot) edu] | ||
* @author Steve Swinsburg ([email protected]) | ||
*/ | ||
public class SettingsPage extends BasePage { | ||
private static final long serialVersionUID = 1L; | ||
|