mirror of
https://github.com/atlanticbiomedical/portal.git
synced 2025-07-01 18:17:26 -04:00
24 lines
636 B
Java
24 lines
636 B
Java
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 "";
|
|
}
|
|
}
|
|
}
|