missed a service definition

pull/516/head
Justin Richer 11 years ago
parent 3fc34f15c8
commit 1ef18a3a93

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

Loading…
Cancel
Save