Skip to content

Commit

Permalink
1 - Fix ECLv2 violations.
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

/**
* @author Leonardo Canessa [lcanessa1 (at) udayton (dot) edu]
* @author Duffy Gillman
* Modeled after org.sakaiproject.scheduler.events.hibernate.TriggerEventEnumUserType.java
*/
public class StatusUserType extends EnumUserType<Status> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 127b9a9

Please sign in to comment.