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.VersionDao; import jp.co.nemuzuka.form.VersionForm; import jp.co.nemuzuka.model.VersionModel; import jp.co.nemuzuka.service.VersionService; 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; /** * VersionService?. * @author kazumune */ public class VersionServiceImpl implements VersionService { VersionDao versionDao = VersionDao.getInstance(); private static VersionServiceImpl impl = new VersionServiceImpl(); /** * ?. * @return */ public static VersionServiceImpl getInstance() { return impl; } /** * . */ private VersionServiceImpl() { } /* (non-Javadoc) * @see jp.co.nemuzuka.service.VersionService#get(java.lang.String) */ @Override public VersionForm get(String projectKeyString) { VersionForm form = new VersionForm(); if (StringUtils.isNotEmpty(projectKeyString)) { VersionModel model = versionDao.get4ProjectKey(projectKeyString); setForm(form, model); } return form; } /* (non-Javadoc) * @see jp.co.nemuzuka.service.VersionService#put(jp.co.nemuzuka.form.VersionForm, java.lang.String) */ @Override public void put(VersionForm form, String projectKeyString) { VersionModel model = null; Long version = ConvertUtils.toLong(form.versionNo); if (version != null) { //?? //version?Key?? Key key = Datastore.stringToKey(form.keyToString); model = versionDao.get(key, version); if (model == null) { //??????Exceptionthrow throw new ConcurrentModificationException(); } } else { //??? model = new VersionModel(); //Key?Key? Key key = Datastore.createKey(VersionModel.class, projectKeyString); model.setKey(key); } setModel(model, form); versionDao.put(model); } /* (non-Javadoc) * @see jp.co.nemuzuka.service.VersionService#getList(java.lang.String) */ @Override public List<LabelValueBean> getList(String projectKeyString) { VersionForm form = get(projectKeyString); return LabelValueBeanUtils.createList(form.versionName, true); } /** * Form. * @param form Form * @param model Model */ private void setForm(VersionForm form, VersionModel model) { if (model == null) { return; } form.keyToString = model.getKeyToString(); form.versionName = model.getVersionName().getValue(); form.versionNo = ConvertUtils.toString(model.getVersion()); } /** * Model. * @param model Model * @param form Form */ private void setModel(VersionModel model, VersionForm form) { model.setVersionName(new Text(form.versionName)); } }