Skip to content

Commit

Permalink
chore: sync classes wrt oxCore
Browse files Browse the repository at this point in the history
  • Loading branch information
jgomer2001 committed Aug 3, 2021
1 parent f327b98 commit 0ceb188
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,24 @@ public boolean postSearchGroups(Object results, Map<String, SimpleCustomProperty
return false;
}

@Override
public boolean allowResourceOperation(Object context, Object entity, Map<String, SimpleCustomProperty> configurationAttributes) {
return true;
}

@Override
public String allowSearchOperation(Object context, Map<String, SimpleCustomProperty> configurationAttributes) {
return "";
}

@Override
public String rejectedResourceOperationResponse(Object context, Object entity, Map<String, SimpleCustomProperty> configurationAttributes) {
return null;
}

@Override
public String rejectedSearchOperationResponse(Object context, Map<String, SimpleCustomProperty> configurationAttributes) {
return null;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,13 @@ public interface ScimType extends BaseExternalType {
boolean postSearchUsers(Object results, Map<String, SimpleCustomProperty> configurationAttributes);

boolean postSearchGroups(Object results, Map<String, SimpleCustomProperty> configurationAttributes);

boolean allowResourceOperation(Object context, Object entity, Map<String, SimpleCustomProperty> configurationAttributes);

String allowSearchOperation(Object context, Map<String, SimpleCustomProperty> configurationAttributes);

String rejectedResourceOperationResponse(Object context, Object entity, Map<String, SimpleCustomProperty> configurationAttributes);

String rejectedSearchOperationResponse(Object context, Map<String, SimpleCustomProperty> configurationAttributes);

}

0 comments on commit 0ceb188

Please sign in to comment.