Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions snprc_ehr/src/org/labkey/snprc_ehr/SNPRC_EHRController.java
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ public ApiResponse execute(SimpleApiJsonForm simpleApiJsonForm, BindException er
public static class BirthReportAction extends SimpleRedirectAction<Object>
{
@Override
public URLHelper getRedirectURL(Object o)
public ActionURL getRedirectURL(Object o)
{
return new ActionURL(NAME, "BirthRecordReport", getContainer());
}
Expand All @@ -315,7 +315,7 @@ public URLHelper getRedirectURL(Object o)
public static class SsrsReportsAction extends SimpleRedirectAction<Object>
{
@Override
public URLHelper getRedirectURL(Object o)
public ActionURL getRedirectURL(Object o)
{
return new ActionURL(NAME, "SsrsReporting", getContainer());
}
Expand All @@ -325,7 +325,7 @@ public URLHelper getRedirectURL(Object o)
public static class IdChipReaderAction extends SimpleRedirectAction
{
@Override
public URLHelper getRedirectURL(Object o)
public ActionURL getRedirectURL(Object o)
{
return new ActionURL(NAME, "ChipReader", getContainer());
}
Expand All @@ -335,7 +335,7 @@ public URLHelper getRedirectURL(Object o)
public static class SndEventViewAction extends SimpleRedirectAction<Object>
{
@Override
public URLHelper getRedirectURL(Object o)
public ActionURL getRedirectURL(Object o)
{
return new ActionURL(NAME, "SndEventsViewer", getContainer());
}
Expand All @@ -345,7 +345,7 @@ public URLHelper getRedirectURL(Object o)
public static class NewAnimalWizardAction extends SimpleRedirectAction<Object>
{
@Override
public URLHelper getRedirectURL(Object o)
public ActionURL getRedirectURL(Object o)
{
return new ActionURL(NAME, "NewAnimalPage", getContainer());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.labkey.api.snd.SNDService;
import org.labkey.api.snprc_scheduler.SNPRC_schedulerService;
import org.labkey.api.util.DateUtil;
import org.labkey.api.util.URLHelper;
import org.labkey.api.view.ActionURL;
import org.labkey.snprc_scheduler.domains.Timeline;
import org.labkey.snprc_scheduler.security.SNPRC_schedulerEditorsPermission;
Expand Down Expand Up @@ -57,7 +56,7 @@ public SNPRC_schedulerController()
public static class BeginAction extends SimpleRedirectAction<Object>
{
@Override
public URLHelper getRedirectURL(Object o)
public ActionURL getRedirectURL(Object o)
{
return new ActionURL(NAME, "app", getContainer());
}
Expand Down