missed a service definition

pull/516/head
Justin Richer 2013-08-30 12:35:59 -04:00
parent 3fc34f15c8
commit 1ef18a3a93
1 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,7 @@
*/
package org.mitre.oauth2.service;
import java.util.Map;
import java.util.Set;
import org.mitre.oauth2.model.SystemScope;
@ -64,5 +65,11 @@ public interface SystemScopeService {
* @return
*/
public Set<String> toStrings(Set<SystemScope> scope);
public String baseScopeString(String value);
public Map<String, String> structuredScopeParameters(Set<String> scope);
public SystemScope toStructuredScope(String s);
}