001 /**
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements. See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License. You may obtain a copy of the License at
008 *
009 * http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017 package org.apache.activemq.store.kahadaptor;
018
019 import org.apache.activemq.command.MessageId;
020 import org.apache.activemq.kaha.StoreEntry;
021
022 /**
023 * Holds information for location of message
024 *
025 *
026 */
027 public class ConsumerMessageRef {
028
029 private MessageId messageId;
030 private StoreEntry messageEntry;
031 private StoreEntry ackEntry;
032
033 /**
034 * @return the ackEntry
035 */
036 public StoreEntry getAckEntry() {
037 return this.ackEntry;
038 }
039
040 /**
041 * @param ackEntry the ackEntry to set
042 */
043 public void setAckEntry(StoreEntry ackEntry) {
044 this.ackEntry = ackEntry;
045 }
046
047 /**
048 * @return the messageEntry
049 */
050 public StoreEntry getMessageEntry() {
051 return this.messageEntry;
052 }
053
054 /**
055 * @param messageEntry the messageEntry to set
056 */
057 public void setMessageEntry(StoreEntry messageEntry) {
058 this.messageEntry = messageEntry;
059 }
060
061 /**
062 * @return the messageId
063 */
064 public MessageId getMessageId() {
065 return this.messageId;
066 }
067
068 /**
069 * @param messageId the messageId to set
070 */
071 public void setMessageId(MessageId messageId) {
072 this.messageId = messageId;
073 }
074
075 public String toString() {
076 return "ConsumerMessageRef[" + messageId + "]";
077 }
078
079 }