/* * * 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.qpid.server.configuration; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; public final class BrokerConfigType extends ConfigObjectType { private static final List> BROKER_PROPERTIES = new ArrayList>(); public static interface BrokerProperty extends ConfigProperty { } private abstract static class BrokerReadWriteProperty extends ConfigProperty.ReadWriteConfigProperty implements BrokerProperty { public BrokerReadWriteProperty(String name) { super(name); BROKER_PROPERTIES.add(this); } } private abstract static class BrokerReadOnlyProperty extends ConfigProperty.ReadOnlyConfigProperty implements BrokerProperty { public BrokerReadOnlyProperty(String name) { super(name); BROKER_PROPERTIES.add(this); } } public static final BrokerReadOnlyProperty SYSTEM_PROPERTY = new BrokerReadOnlyProperty("system") { public SystemConfig getValue(BrokerConfig object) { return object.getSystem(); } }; public static final BrokerReadOnlyProperty PORT_PROPERTY = new BrokerReadOnlyProperty("port") { public Integer getValue(BrokerConfig object) { return object.getPort(); } }; public static final BrokerReadOnlyProperty WORKER_THREADS_PROPERTY = new BrokerReadOnlyProperty("workerThreads") { public Integer getValue(BrokerConfig object) { return object.getWorkerThreads(); } }; public static final BrokerReadOnlyProperty MAX_CONNECTIONS_PROPERTY = new BrokerReadOnlyProperty("maxConnections") { public Integer getValue(BrokerConfig object) { return object.getMaxConnections(); } }; public static final BrokerReadOnlyProperty CONNECTION_BACKLOG_LIMIT_PROPERTY = new BrokerReadOnlyProperty("connectionBacklog") { public Integer getValue(BrokerConfig object) { return object.getConnectionBacklogLimit(); } }; public static final BrokerReadOnlyProperty STAGING_THRESHOLD_PROPERTY = new BrokerReadOnlyProperty("stagingThreshold") { public Long getValue(BrokerConfig object) { return object.getStagingThreshold(); } }; public static final BrokerReadOnlyProperty MANAGEMENT_PUBLISH_INTERVAL_PROPERTY = new BrokerReadOnlyProperty("mgmtPublishInterval") { public Integer getValue(BrokerConfig object) { return object.getManagementPublishInterval(); } }; public static final BrokerReadOnlyProperty VERSION_PROPERTY = new BrokerReadOnlyProperty("version") { public String getValue(BrokerConfig object) { return object.getVersion(); } }; public static final BrokerReadOnlyProperty DATA_DIR_PROPERTY = new BrokerReadOnlyProperty("dataDirectory") { public String getValue(BrokerConfig object) { return object.getDataDirectory(); } }; private static final BrokerConfigType INSTANCE = new BrokerConfigType(); private BrokerConfigType() { } public Collection> getProperties() { return Collections.unmodifiableList(BROKER_PROPERTIES); } public static BrokerConfigType getInstance() { return INSTANCE; } }