mirror of
https://github.com/atlanticbiomedical/portal.git
synced 2025-07-01 18:17:26 -04:00
Initial Commit
This commit is contained in:
23
src/com/biomed/client/place/ViewWorkordersPlace.java
Normal file
23
src/com/biomed/client/place/ViewWorkordersPlace.java
Normal file
@ -0,0 +1,23 @@
|
||||
package com.biomed.client.place;
|
||||
|
||||
import com.google.gwt.place.shared.PlaceTokenizer;
|
||||
import com.google.gwt.place.shared.Prefix;
|
||||
|
||||
public final class ViewWorkordersPlace extends WorkordersPlace {
|
||||
public static final ViewWorkordersPlace INSTANCE = new ViewWorkordersPlace();
|
||||
private ViewWorkordersPlace() { }
|
||||
|
||||
@Prefix("workorders")
|
||||
public static class Tokenizer implements PlaceTokenizer<ViewWorkordersPlace> {
|
||||
|
||||
@Override
|
||||
public ViewWorkordersPlace getPlace(String token) {
|
||||
return ViewWorkordersPlace.INSTANCE;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getToken(ViewWorkordersPlace place) {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user