Changeset 5341 for branches/release-0.13.x/pfixcore/src/de/schlund/pfixcore/auth/AuthConstraint.java
- Timestamp:
- 09/04/10 22:05:44 (21 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/release-0.13.x/pfixcore/src/de/schlund/pfixcore/auth/AuthConstraint.java
r3553 r5341 18 18 package de.schlund.pfixcore.auth; 19 19 20 import java.util.List; 21 22 import de.schlund.pfixcore.auth.conditions.NavigationCase; 20 23 import de.schlund.pfixcore.workflow.Context; 21 24 … … 30 33 31 34 public Condition getCondition(); 35 36 public List<NavigationCase> getNavigation(); 32 37 33 38 public void setCondition(Condition condition); … … 35 40 public String getId(); 36 41 37 public String getAuthPage(); 42 public String getAuthPage(Context context); 43 44 public String getDefaultAuthPage(); 38 45 39 46 }
