Java tutorial
/* * Copyright 2012 Kazumune Katagiri. (http://d.hatena.ne.jp/nemuzuka) * * 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 jp.co.nemuzuka.service.impl; import java.util.ConcurrentModificationException; import java.util.List; import jp.co.nemuzuka.core.entity.LabelValueBean; import jp.co.nemuzuka.dao.KindDao; import jp.co.nemuzuka.form.KindForm; import jp.co.nemuzuka.model.KindModel; import jp.co.nemuzuka.service.KindService; import jp.co.nemuzuka.utils.ConvertUtils; import jp.co.nemuzuka.utils.LabelValueBeanUtils; import org.apache.commons.lang.StringUtils; import org.slim3.datastore.Datastore; import com.google.appengine.api.datastore.Key; import com.google.appengine.api.datastore.Text; /** * KindService?. * @author kazumune */ public class KindServiceImpl implements KindService { KindDao kindDao = KindDao.getInstance(); private static KindServiceImpl impl = new KindServiceImpl(); /** * ?. * @return */ public static KindServiceImpl getInstance() { return impl; } /** * . */ private KindServiceImpl() { } /* (? Javadoc) * @see jp.co.nemuzuka.service.KindService#get(java.lang.String) */ @Override public KindForm get(String projectKeyString) { KindForm form = new KindForm(); if (StringUtils.isNotEmpty(projectKeyString)) { KindModel model = kindDao.get4ProjectKey(projectKeyString); setForm(form, model); } return form; } /* (non-Javadoc) * @see jp.co.nemuzuka.service.KindService#put(jp.co.nemuzuka.form.KindForm) */ @Override public void put(KindForm form, String projectKeyString) { KindModel model = null; Long version = ConvertUtils.toLong(form.versionNo); if (version != null) { //?? //version?Key?? Key key = Datastore.stringToKey(form.keyToString); model = kindDao.get(key, version); if (model == null) { //??????Exceptionthrow throw new ConcurrentModificationException(); } } else { //??? model = new KindModel(); //Key?Key? Key key = Datastore.createKey(KindModel.class, projectKeyString); model.setKey(key); } setModel(model, form); kindDao.put(model); } /* (non-Javadoc) * @see jp.co.nemuzuka.service.KindService#getList(java.lang.String) */ @Override public List<LabelValueBean> getList(String projectKeyToString) { KindForm form = get(projectKeyToString); return LabelValueBeanUtils.createList(form.getKindName(), true); } /** * Form. * @param form Form * @param model Model */ private void setForm(KindForm form, KindModel model) { if (model == null) { return; } form.keyToString = model.getKeyToString(); form.kindName = model.getKindName().getValue(); form.versionNo = ConvertUtils.toString(model.getVersion()); } /** * Model. * @param model Model * @param form Form */ private void setModel(KindModel model, KindForm form) { model.setKindName(new Text(form.kindName)); } }