/******************************************************************************* * Copyright 2013 Open mHealth * * 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 org.openmhealth.reference.domain.mongodb; import org.mongojack.MongoCollection; import org.openmhealth.reference.data.UserBin; import org.openmhealth.reference.domain.User; import org.openmhealth.reference.exception.OmhException; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonProperty; /** * <p> * A MongoDB extension of the {@link User} type. * </p> * * <p> * This class is immutable. * </p> * * @author John Jenkins */ @MongoCollection(name = UserBin.DB_NAME) public class MongoUser extends User implements MongoDbObject { /** * The ID for this class which is used for serialization. */ private static final long serialVersionUID = 1L; /** * The database ID for this object. */ @JsonIgnore private final String dbId; /** * Creates a new user. * * @param username This user's username. * * @throws OmhException The username was invalid. */ @JsonCreator public MongoUser( @JsonProperty(DATABASE_FIELD_ID) final String dbId, @JsonProperty(JSON_KEY_USERNAME) final String username, @JsonProperty(JSON_KEY_PASSWORD) final String password, @JsonProperty(JSON_KEY_EMAIL) final String email, @JsonProperty(JSON_KEY_REGISTRATION_KEY) final String registrationKey, @JsonProperty(JSON_KEY_DATE_REGISTERED) final Long dateRegistered, @JsonProperty(JSON_KEY_DATE_ACTIVATED) final Long dateActivated) throws OmhException { super( username, password, email, registrationKey, dateRegistered, dateActivated); // Store the MongoDB ID. if(dbId == null) { throw new OmhException("The MongoDB ID is missing."); } else { this.dbId = dbId; } } /* * (non-Javadoc) * @see org.openmhealth.reference.data.mongodb.MongoDbObject#getDatabaseId() */ @Override public String getDatabaseId() { return dbId; } }