/* * 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.protocol.core.impl.wireformat; import org.apache.activemq.artemis.api.core.ActiveMQBuffer; import org.apache.activemq.artemis.api.core.SimpleString; import org.apache.activemq.artemis.api.core.RoutingType; public class CreateQueueMessage_V2 extends CreateQueueMessage { protected boolean autoCreated; private RoutingType routingType; private int maxConsumers; private boolean purgeOnNoConsumers; public CreateQueueMessage_V2(final SimpleString address, final SimpleString queueName, final RoutingType routingType, final SimpleString filterString, final boolean durable, final boolean temporary, final int maxConsumers, final boolean purgeOnNoConsumers, final boolean autoCreated, final boolean requiresResponse) { this(); this.address = address; this.queueName = queueName; this.filterString = filterString; this.durable = durable; this.temporary = temporary; this.autoCreated = autoCreated; this.requiresResponse = requiresResponse; this.routingType = routingType; this.maxConsumers = maxConsumers; this.purgeOnNoConsumers = purgeOnNoConsumers; } public CreateQueueMessage_V2() { super(CREATE_QUEUE_V2); } // Public -------------------------------------------------------- @Override public String toString() { StringBuffer buff = new StringBuffer(super.getParentString()); buff.append(", autoCreated=" + autoCreated); buff.append(", routingType=" + routingType); buff.append(", maxConsumers=" + maxConsumers); buff.append(", purgeOnNoConsumers=" + purgeOnNoConsumers); buff.append("]"); return buff.toString(); } public RoutingType getRoutingType() { return routingType; } public void setRoutingType(RoutingType routingType) { this.routingType = routingType; } public int getMaxConsumers() { return maxConsumers; } public void setMaxConsumers(int maxConsumers) { this.maxConsumers = maxConsumers; } public boolean isPurgeOnNoConsumers() { return purgeOnNoConsumers; } public void setPurgeOnNoConsumers(boolean purgeOnNoConsumers) { this.purgeOnNoConsumers = purgeOnNoConsumers; } public boolean isAutoCreated() { return autoCreated; } public void setAutoCreated(boolean autoCreated) { this.autoCreated = autoCreated; } @Override public void encodeRest(final ActiveMQBuffer buffer) { super.encodeRest(buffer); buffer.writeBoolean(autoCreated); buffer.writeByte(routingType == null ? -1 : routingType.getType()); buffer.writeInt(maxConsumers); buffer.writeBoolean(purgeOnNoConsumers); } @Override public void decodeRest(final ActiveMQBuffer buffer) { super.decodeRest(buffer); autoCreated = buffer.readBoolean(); routingType = RoutingType.getType(buffer.readByte()); maxConsumers = buffer.readInt(); purgeOnNoConsumers = buffer.readBoolean(); } @Override public int hashCode() { final int prime = 31; int result = super.hashCode(); result = prime * result + (autoCreated ? 1231 : 1237); result = prime * result + (routingType.getType()); result = prime * result + (maxConsumers); result = prime * result + (purgeOnNoConsumers ? 1231 : 1237); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (!super.equals(obj)) return false; if (!(obj instanceof CreateQueueMessage_V2)) return false; CreateQueueMessage_V2 other = (CreateQueueMessage_V2) obj; if (autoCreated != other.autoCreated) return false; if (maxConsumers != other.maxConsumers) return false; if (purgeOnNoConsumers != other.purgeOnNoConsumers) return false; if (purgeOnNoConsumers != other.purgeOnNoConsumers) return false; if (routingType == null) { if (other.routingType != null) return false; } else if (!routingType.equals(other.routingType)) return false; return true; } }