/* * Copyright 2013 Eric F. Savage, code@efsavage.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 com.ajah.user.data; import java.util.List; import org.springframework.stereotype.Repository; import com.ajah.spring.jdbc.AbstractAjahDao; import com.ajah.spring.jdbc.criteria.Criteria; import com.ajah.spring.jdbc.criteria.Order; import com.ajah.spring.jdbc.err.DataOperationException; import com.ajah.user.UserId; import com.ajah.user.UserSetting; import com.ajah.user.UserSettingId; import com.ajah.user.UserSettingKey; import com.ajah.user.UserSettingStatus; import com.ajah.user.UserSettingType; /** * MySQL-based implementation of {@link UserSettingDao}. * * @author Eric F. Savage <code@efsavage.com> * */ @Repository public class UserSettingDaoImpl extends AbstractAjahDao<UserSettingId, UserSetting, UserSetting> implements UserSettingDao { /** * @see com.ajah.user.data.UserSettingDao#count(com.ajah.user.UserSettingType, * com.ajah.user.UserSettingStatus) */ @Override public long count(final UserSettingType type, final UserSettingStatus status) throws DataOperationException { final Criteria criteria = new Criteria(); if (type != null) { criteria.eq("type", type); } if (status != null) { criteria.eq("status", status); } return super.count(criteria); } /** * @see com.ajah.user.data.UserSettingDao#find(UserId, String) */ @Override public UserSetting find(final UserId userId, final String name) throws DataOperationException { return super.find(new Criteria().eq(userId).eq("name", name)); } /** * @see com.ajah.user.data.UserSettingDao#list(UserId, UserSettingType, * UserSettingStatus, long, long) */ @Override public List<UserSetting> list(final UserId userId, final UserSettingType type, final UserSettingStatus status, final long page, final long count) throws DataOperationException { final Criteria criteria = new Criteria().eq(userId); if (type != null) { criteria.eq("type", type); } if (status != null) { criteria.eq("status", status); } return super.list(criteria.offset(page * count).rows(count).orderBy("name", Order.ASC)); } /** * @see com.ajah.user.data.UserSettingDao#list(UserSettingKey, String) */ @Override public List<UserSetting> list(UserSettingKey key, String value) throws DataOperationException { return super.list(new Criteria().eq("name", key.getName()).eq("value", value)); } }