Skip to content

Commit

Permalink
schrodinger: forms object import support
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Mar 2, 2021
1 parent 1cb5c97 commit b0c8dba
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -412,6 +412,8 @@ private RestPrismObjectAddService addObjectService(RestPrismService service, Pri
addService = service.valuePolicies().add((ValuePolicyType) object.asObjectable());
} else if (object.isOfType(SecurityPolicyType.class)) {
addService = service.securityPolicies().add((SecurityPolicyType) object.asObjectable());
} else if (object.isOfType(FormType.class)) {
// addService = service.forms().add((FormType) object.asObjectable());
}
return (RestPrismObjectAddService) addService;
}
Expand Down

0 comments on commit b0c8dba

Please sign in to comment.