/* * Copyright (c) www.bugull.com * * Licensed 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 net.tooan.ynpay.third.mongodb; import net.tooan.ynpay.third.mongodb.annotations.Id; import net.tooan.ynpay.third.mongodb.mapper.StringUtil; import org.bson.types.ObjectId; import java.io.Serializable; /** * A simple implementation of BuguEntity. * SimpleEntity is convenient for use: <br/> * 1. It contains the id field, and getId(), setId() method.<br/> * 2. It contains getTimestamp() method, telling when the document is inserted into mongoDB.<br/> * 3. It implements equals(), hashCode(), and toString() method. <br/> * * @author Frank Wen(xbwen@hotmail.com) */ public abstract class SimpleEntity implements BuguEntity, Serializable { @Id protected String id; @Override public String getId() { return id; } @Override public void setId(String id) { this.id = id; } /** * Get the time when the document is created, in milliseconds. * * @return */ public long getTimestamp() { if (StringUtil.isEmpty(id)) { return -1; } ObjectId oid = new ObjectId(id); return oid.getTime(); } @Override public boolean equals(Object other) { if (!(other instanceof SimpleEntity)) { return false; } SimpleEntity o = (SimpleEntity) other; String oid = o.getId(); if (StringUtil.isEmpty(id) || StringUtil.isEmpty(oid)) { return false; } return id.equalsIgnoreCase(oid); } @Override public int hashCode() { if (StringUtil.isEmpty(id)) { return -1; } return new ObjectId(id).hashCode(); } @Override public String toString() { return id; } }