/*
* Copyright 2010-2011 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 com.ning.billing.jaxrs.json;
import java.util.List;
import org.codehaus.jackson.annotate.JsonCreator;
import org.codehaus.jackson.annotate.JsonProperty;
import org.codehaus.jackson.map.annotate.JsonView;
import com.ning.billing.entitlement.api.user.SubscriptionBundle;
public class BundleJson {
@JsonView(BundleTimelineViews.Base.class)
private final String bundleId;
@JsonView(BundleTimelineViews.Base.class)
private final String accountId;
@JsonView(BundleTimelineViews.Base.class)
private final String externalKey;
@JsonView(BundleTimelineViews.Timeline.class)
private final List<SubscriptionJson> subscriptions;
@JsonCreator
public BundleJson(@JsonProperty("bundle_id") String bundleId,
@JsonProperty("account_id") String accountId,
@JsonProperty("external_key") String externalKey,
@JsonProperty("subscriptions") List<SubscriptionJson> subscriptions) {
super();
this.bundleId = bundleId;
this.accountId = accountId;
this.externalKey = externalKey;
this.subscriptions = subscriptions;
}
public String getBundleId() {
return bundleId;
}
public String getAccountId() {
return accountId;
}
public String getExternalKey() {
return externalKey;
}
public List<SubscriptionJson> getSubscriptions() {
return subscriptions;
}
public BundleJson(SubscriptionBundle bundle) {
this.bundleId = bundle.getId().toString();
this.accountId = bundle.getAccountId().toString();
this.externalKey = bundle.getKey();
this.subscriptions = null;
}
public BundleJson() {
this.bundleId = null;
this.accountId = null;
this.externalKey = null;
this.subscriptions = null;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result
+ ((accountId == null) ? 0 : accountId.hashCode());
result = prime * result
+ ((bundleId == null) ? 0 : bundleId.hashCode());
result = prime * result
+ ((externalKey == null) ? 0 : externalKey.hashCode());
result = prime * result
+ ((subscriptions == null) ? 0 : subscriptions.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (equalsNoId(obj) == false) {
return false;
}
BundleJson other = (BundleJson) obj;
if (bundleId == null) {
if (other.bundleId != null)
return false;
} else if (!bundleId.equals(other.bundleId))
return false;
return true;
}
public boolean equalsNoId(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
BundleJson other = (BundleJson) obj;
if (accountId == null) {
if (other.accountId != null)
return false;
} else if (!accountId.equals(other.accountId))
return false;
if (externalKey == null) {
if (other.externalKey != null)
return false;
} else if (!externalKey.equals(other.externalKey))
return false;
if (subscriptions == null) {
if (other.subscriptions != null)
return false;
} else if (!subscriptions.equals(other.subscriptions))
return false;
return true;
}
}