Skip to content
Snippets Groups Projects
Commit f80983b6 authored by gmantele's avatar gmantele
Browse files

[TAP] Fix Incorrect unit for outputLimit and uploadLimit in the service capabilities.

parent 9aa13889
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,16 @@ import uws.service.UserIdentifier; ...@@ -38,7 +38,16 @@ import uws.service.UserIdentifier;
public interface ServiceConnection { public interface ServiceConnection {
public static enum LimitUnit{ public static enum LimitUnit{
rows, bytes; rows("row"),
bytes("byte");
private final String str;
private LimitUnit(final String str){
this.str = str;
}
public String toString(){
return str;
}
} }
public String getProviderName(); public String getProviderName();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment