jp.openstandia.connector.datadog.DatadogSchema Maven / Gradle / Ivy
The newest version!
/*
* Copyright Nomura Research Institute, Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package jp.openstandia.connector.datadog;
import org.identityconnectors.framework.common.objects.*;
import org.identityconnectors.framework.spi.operations.SearchOp;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
/**
* Schema for Datadog objects.
*
* @author Hiroyuki Wada
*/
public class DatadogSchema {
private final DatadogConfiguration configuration;
private final DatadogClient client;
public final Schema schema;
public final Map userSchema;
public final Map roleSchema;
public DatadogSchema(DatadogConfiguration configuration, DatadogClient client) {
this.configuration = configuration;
this.client = client;
SchemaBuilder schemaBuilder = new SchemaBuilder(DatadogConnector.class);
ObjectClassInfo userSchemaInfo = DatadogUserHandler.getUserSchema();
schemaBuilder.defineObjectClass(userSchemaInfo);
ObjectClassInfo roleSchemaInfo = DatadogRoleHandler.getRoleSchema();
schemaBuilder.defineObjectClass(roleSchemaInfo);
schemaBuilder.defineOperationOption(OperationOptionInfoBuilder.buildAttributesToGet(), SearchOp.class);
schemaBuilder.defineOperationOption(OperationOptionInfoBuilder.buildReturnDefaultAttributes(), SearchOp.class);
schema = schemaBuilder.build();
Map userSchemaMap = new HashMap<>();
for (AttributeInfo info : userSchemaInfo.getAttributeInfo()) {
userSchemaMap.put(info.getName(), info);
}
Map roleSchemaMp = new HashMap<>();
for (AttributeInfo info : roleSchemaInfo.getAttributeInfo()) {
roleSchemaMp.put(info.getName(), info);
}
this.userSchema = Collections.unmodifiableMap(userSchemaMap);
this.roleSchema = Collections.unmodifiableMap(roleSchemaMp);
}
}