/* * 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.activemq.artemis.core.client.impl; import org.apache.activemq.artemis.api.core.SimpleString; import org.apache.activemq.artemis.api.core.client.ClientSession; import org.apache.activemq.artemis.api.core.RoutingType; public class QueueQueryImpl implements ClientSession.QueueQuery { private final boolean exists; private final boolean durable; private final boolean temporary; private final long messageCount; private final SimpleString filterString; private final int consumerCount; private final SimpleString address; private final SimpleString name; private final boolean autoCreateQueues; private final boolean autoCreated; private final RoutingType routingType; private final boolean purgeOnNoConsumers; private final int maxConsumers; public QueueQueryImpl(final boolean durable, final boolean temporary, final int consumerCount, final long messageCount, final SimpleString filterString, final SimpleString address, final SimpleString name, final boolean exists) { this(durable, temporary, consumerCount, messageCount, filterString, address, name, exists, false); } public QueueQueryImpl(final boolean durable, final boolean temporary, final int consumerCount, final long messageCount, final SimpleString filterString, final SimpleString address, final SimpleString name, final boolean exists, final boolean autoCreateQueues) { this(durable, temporary, consumerCount, messageCount, filterString, address, name, exists, autoCreateQueues, -1, false, false, RoutingType.MULTICAST); } public QueueQueryImpl(final boolean durable, final boolean temporary, final int consumerCount, final long messageCount, final SimpleString filterString, final SimpleString address, final SimpleString name, final boolean exists, final boolean autoCreateQueues, final int maxConsumers, final boolean autoCreated, final boolean purgeOnNoConsumers, final RoutingType routingType) { this.durable = durable; this.temporary = temporary; this.consumerCount = consumerCount; this.messageCount = messageCount; this.filterString = filterString; this.address = address; this.name = name; this.exists = exists; this.autoCreateQueues = autoCreateQueues; this.maxConsumers = maxConsumers; this.autoCreated = autoCreated; this.purgeOnNoConsumers = purgeOnNoConsumers; this.routingType = routingType; } @Override public SimpleString getName() { return name; } @Override public SimpleString getAddress() { return address; } @Override public int getConsumerCount() { return consumerCount; } @Override public SimpleString getFilterString() { return filterString; } @Override public long getMessageCount() { return messageCount; } @Override public boolean isDurable() { return durable; } @Override public boolean isAutoCreateQueues() { return autoCreateQueues; } @Override public boolean isTemporary() { return temporary; } @Override public boolean isExists() { return exists; } @Override public RoutingType getRoutingType() { return routingType; } @Override public int getMaxConsumers() { return maxConsumers; } @Override public boolean isPurgeOnNoConsumers() { return purgeOnNoConsumers; } @Override public boolean isAutoCreated() { return autoCreated; } }