/* * Copyright 2010-2013 Ning, Inc. * * Ning 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.killbill.billing.subscription.engine.dao.model; import java.util.UUID; import org.joda.time.DateTime; import org.killbill.billing.subscription.api.user.DefaultSubscriptionBaseBundle; import org.killbill.billing.subscription.api.user.SubscriptionBaseBundle; import org.killbill.billing.util.dao.TableName; import org.killbill.billing.util.entity.dao.EntityModelDao; import org.killbill.billing.util.entity.dao.EntityModelDaoBase; import com.google.common.base.MoreObjects; public class SubscriptionBundleModelDao extends EntityModelDaoBase implements EntityModelDao<SubscriptionBaseBundle> { private String externalKey; private UUID accountId; private DateTime lastSysUpdateDate; private DateTime originalCreatedDate; public SubscriptionBundleModelDao() { /* For the DAO mapper */ } public SubscriptionBundleModelDao(final UUID id, final String key, final UUID accountId, final DateTime lastSysUpdateDate, final DateTime createdDate, DateTime originalCreatedDate, final DateTime updateDate) { super(id, createdDate, updateDate); this.externalKey = MoreObjects.firstNonNull(key, id.toString()); this.accountId = accountId; this.lastSysUpdateDate = lastSysUpdateDate; this.originalCreatedDate = originalCreatedDate; } public SubscriptionBundleModelDao(final DefaultSubscriptionBaseBundle input) { this(input.getId(), input.getExternalKey(), input.getAccountId(), input.getLastSysUpdateDate(), input.getCreatedDate(), input.getOriginalCreatedDate(), input.getUpdatedDate()); } public String getExternalKey() { return externalKey; } public UUID getAccountId() { return accountId; } public DateTime getLastSysUpdateDate() { return lastSysUpdateDate; } public DateTime getOriginalCreatedDate() { return originalCreatedDate; } public void setExternalKey(final String externalKey) { this.externalKey = externalKey; } public void setAccountId(final UUID accountId) { this.accountId = accountId; } public void setLastSysUpdateDate(final DateTime lastSysUpdateDate) { this.lastSysUpdateDate = lastSysUpdateDate; } public void setOriginalCreatedDate(final DateTime originalCreatedDate) { this.originalCreatedDate = originalCreatedDate; } public static SubscriptionBaseBundle toSubscriptionbundle(final SubscriptionBundleModelDao src) { if (src == null) { return null; } return new DefaultSubscriptionBaseBundle(src.getId(), src.getExternalKey(), src.getAccountId(), src.getLastSysUpdateDate(), src.getOriginalCreatedDate(), src.getCreatedDate(), src.getUpdatedDate()); } @Override public String toString() { final StringBuilder sb = new StringBuilder(); sb.append("SubscriptionBundleModelDao"); sb.append("{externalKey='").append(externalKey).append('\''); sb.append(", accountId=").append(accountId); sb.append(", lastSysUpdateDate=").append(lastSysUpdateDate); sb.append('}'); return sb.toString(); } @Override public boolean equals(final Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } if (!super.equals(o)) { return false; } final SubscriptionBundleModelDao that = (SubscriptionBundleModelDao) o; if (accountId != null ? !accountId.equals(that.accountId) : that.accountId != null) { return false; } if (externalKey != null ? !externalKey.equals(that.externalKey) : that.externalKey != null) { return false; } if (lastSysUpdateDate != null ? lastSysUpdateDate.compareTo(that.lastSysUpdateDate) != 0 : that.lastSysUpdateDate != null) { return false; } if (originalCreatedDate != null ? originalCreatedDate.compareTo(that.originalCreatedDate) != 0 : that.originalCreatedDate != null) { return false; } return true; } @Override public int hashCode() { int result = super.hashCode(); result = 31 * result + (externalKey != null ? externalKey.hashCode() : 0); result = 31 * result + (accountId != null ? accountId.hashCode() : 0); result = 31 * result + (lastSysUpdateDate != null ? lastSysUpdateDate.hashCode() : 0); result = 31 * result + (originalCreatedDate != null ? originalCreatedDate.hashCode() : 0); return result; } @Override public TableName getTableName() { return TableName.BUNDLES; } @Override public TableName getHistoryTableName() { return null; } }