/* * * 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 ConnectionConfigType extends ConfigObjectType { private static final List> CONNECTION_PROPERTIES = new ArrayList>(); public static interface ConnectionProperty extends ConfigProperty { } private abstract static class ConnectionReadWriteProperty extends ConfigProperty.ReadWriteConfigProperty implements ConnectionProperty { public ConnectionReadWriteProperty(String name) { super(name); CONNECTION_PROPERTIES.add(this); } } private abstract static class ConnectionReadOnlyProperty extends ConfigProperty.ReadOnlyConfigProperty implements ConnectionProperty { public ConnectionReadOnlyProperty(String name) { super(name); CONNECTION_PROPERTIES.add(this); } } public static final ConnectionReadOnlyProperty VIRTUAL_HOST_PROPERTY = new ConnectionReadOnlyProperty("virtualHost") { public VirtualHostConfig getValue(ConnectionConfig object) { return object.getVirtualHost(); } }; public static final ConnectionReadOnlyProperty ADDRESS_PROPERTY = new ConnectionReadOnlyProperty("address") { public String getValue(ConnectionConfig object) { return object.getAddress(); } }; public static final ConnectionReadOnlyProperty INCOMING_PROPERTY = new ConnectionReadOnlyProperty("incoming") { public Boolean getValue(ConnectionConfig object) { return object.isIncoming(); } }; public static final ConnectionReadOnlyProperty SYSTEM_CONNECTION_PROPERTY = new ConnectionReadOnlyProperty("systemConnection") { public Boolean getValue(ConnectionConfig object) { return object.isSystemConnection(); } }; public static final ConnectionReadOnlyProperty FEDERATION_LINK_PROPERTY = new ConnectionReadOnlyProperty("federationLink") { public Boolean getValue(ConnectionConfig object) { return object.isFederationLink(); } }; public static final ConnectionReadOnlyProperty AUTH_ID_PROPERTY = new ConnectionReadOnlyProperty("authId") { public String getValue(ConnectionConfig object) { return object.getAuthId(); } }; public static final ConnectionReadOnlyProperty REMOTE_PROCESS_NAME_PROPERTY = new ConnectionReadOnlyProperty("remoteProcessName") { public String getValue(ConnectionConfig object) { return object.getRemoteProcessName(); } }; public static final ConnectionReadOnlyProperty REMOTE_PID_PROPERTY = new ConnectionReadOnlyProperty("remotePid") { public Integer getValue(ConnectionConfig object) { return object.getRemotePID(); } }; public static final ConnectionReadOnlyProperty REMOTE_PARENT_PID_PROPERTY = new ConnectionReadOnlyProperty("remoteParentPid") { public Integer getValue(ConnectionConfig object) { return object.getRemoteParentPID(); } }; private static final ConnectionConfigType INSTANCE = new ConnectionConfigType(); private ConnectionConfigType() { } public Collection> getProperties() { return Collections.unmodifiableList(CONNECTION_PROPERTIES); } public static ConnectionConfigType getInstance() { return INSTANCE; } }