Skip to content

Commit

Permalink
Add constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
ThaminduR committed Aug 31, 2023
1 parent 96ff530 commit addb9c4
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

package org.wso2.carbon.identity.api.server.application.management.v1.core;

import org.yaml.snakeyaml.DumperOptions;
import org.yaml.snakeyaml.introspector.Property;
import org.yaml.snakeyaml.representer.Representer;

Expand All @@ -33,6 +34,10 @@ public class CustomRepresenter extends Representer {
private static final String[] PROPERTIES_TO_REMOVE = {"inboundConfiguration", "applicationID", "owner",
"tenantDomain", "id", "idpProperties", "resourceId", "spProperties", "applicationResourceId"};

public CustomRepresenter(DumperOptions options) {
super(options);
}

@Override
protected Set<Property> getProperties(Class<?> type) {

Expand Down

0 comments on commit addb9c4

Please sign in to comment.