/* * * 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 org.apache.qpid.server.exchange.ExchangeType; import java.util.*; public final class ExchangeConfigType extends ConfigObjectType { private static final List> EXCHANGE_PROPERTIES = new ArrayList>(); public static interface ExchangeProperty extends ConfigProperty { } private abstract static class ExchangeReadWriteProperty extends ConfigProperty.ReadWriteConfigProperty implements ExchangeProperty { public ExchangeReadWriteProperty(String name) { super(name); EXCHANGE_PROPERTIES.add(this); } } private abstract static class ExchangeReadOnlyProperty extends ConfigProperty.ReadOnlyConfigProperty implements ExchangeProperty { public ExchangeReadOnlyProperty(String name) { super(name); EXCHANGE_PROPERTIES.add(this); } } public static final ExchangeReadOnlyProperty VIRTUAL_HOST_PROPERTY = new ExchangeReadOnlyProperty("virtualHost") { public VirtualHostConfig getValue(ExchangeConfig object) { return object.getVirtualHost(); } }; public static final ExchangeReadOnlyProperty NAME_PROPERTY = new ExchangeReadOnlyProperty("name") { public String getValue(ExchangeConfig object) { return object.getName(); } }; public static final ExchangeReadOnlyProperty AUTODELETE_PROPERTY = new ExchangeReadOnlyProperty("autodelete") { public Boolean getValue(ExchangeConfig object) { return object.isAutoDelete(); } }; public static final ExchangeReadOnlyProperty ALTERNATE_EXCHANGE_PROPERTY = new ExchangeReadOnlyProperty("alternateExchange") { public ExchangeConfig getValue(ExchangeConfig object) { return object.getAlternateExchange(); } }; public static final ExchangeReadOnlyProperty> ARGUMENTS = new ExchangeReadOnlyProperty>("arguments") { public Map getValue(ExchangeConfig object) { return object.getArguments(); } }; private static final ExchangeConfigType INSTANCE = new ExchangeConfigType(); private ExchangeConfigType() { } public Collection> getProperties() { return Collections.unmodifiableList(EXCHANGE_PROPERTIES); } public static ExchangeConfigType getInstance() { return INSTANCE; } }