blob: 7f685fc2a78c92096c5c7f37b9c195834c783717 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.nifi.minifi.commons.schema;
import org.apache.nifi.minifi.commons.schema.common.BaseSchema;
import org.apache.nifi.minifi.commons.schema.common.WritableSchema;
import java.util.Map;
import static org.apache.nifi.minifi.commons.schema.common.CommonPropertyKeys.COMPONENT_STATUS_REPO_KEY;
public class ComponentStatusRepositorySchema extends BaseSchema implements WritableSchema {
public static final String BUFFER_SIZE_KEY = "buffer size";
public static final String SNAPSHOT_FREQUENCY_KEY = "snapshot frequency";
public static final int DEFAULT_BUFFER_SIZE = 1440;
public static final String DEFAULT_SNAPSHOT_FREQUENCY = "1 min";
private Number bufferSize = DEFAULT_BUFFER_SIZE;
private String snapshotFrequency = DEFAULT_SNAPSHOT_FREQUENCY;
public ComponentStatusRepositorySchema() {
}
public ComponentStatusRepositorySchema(Map map) {
bufferSize = getOptionalKeyAsType(map, BUFFER_SIZE_KEY, Number.class, COMPONENT_STATUS_REPO_KEY, DEFAULT_BUFFER_SIZE);
snapshotFrequency = getOptionalKeyAsType(map, SNAPSHOT_FREQUENCY_KEY, String.class, COMPONENT_STATUS_REPO_KEY, DEFAULT_SNAPSHOT_FREQUENCY);
}
@Override
public Map<String, Object> toMap() {
Map<String, Object> result = mapSupplier.get();
result.put(BUFFER_SIZE_KEY, bufferSize);
result.put(SNAPSHOT_FREQUENCY_KEY, snapshotFrequency);
return result;
}
public Number getBufferSize() {
return bufferSize;
}
public String getSnapshotFrequency() {
return snapshotFrequency;
}
}