/******************************************************************************* * Copyright 2011 Antti Havanko * * This file is part of Motiver.fi. * Motiver.fi is licensed under one open source license and one commercial license. * * Commercial license: This is the appropriate option if you want to use Motiver.fi in * commercial purposes. Contact license@motiver.fi for licensing options. * * Open source license: This is the appropriate option if you are creating an open source * application with a license compatible with the GNU GPL license v3. Although the GPLv3 has * many terms, the most important is that you must provide the source code of your application * to your users so they can be free to modify your application for their own needs. ******************************************************************************/ package com.delect.motiver.server.jdo; import java.util.ArrayList; import java.util.List; import javax.jdo.annotations.IdGeneratorStrategy; import javax.jdo.annotations.IdentityType; import javax.jdo.annotations.PersistenceCapable; import javax.jdo.annotations.Persistent; import javax.jdo.annotations.PrimaryKey; import org.json.simple.JSONArray; import org.json.simple.JSONObject; import com.google.appengine.api.datastore.Key; import com.google.appengine.api.datastore.KeyFactory; import com.delect.motiver.shared.CardioModel; @PersistenceCapable(identityType = IdentityType.APPLICATION) public class Cardio { /** * Converts server object to client side object * @param model : server side model * @return Client side model */ public static CardioModel getClientModel(Cardio model) { if(model == null) { return null; } CardioModel modelClient = new CardioModel(model.getId(), model.getName()); modelClient.setUid(model.getUid()); return modelClient; } /** * Converts client object to server side object * @param model : client side model * @return Server side model */ public static Cardio getServerModel(CardioModel model) { if(model == null) { return null; } Cardio modelServer = new Cardio(model.getNameServer()); modelServer.setId(model.getId()); return modelServer; } @Persistent public Long uid; @Persistent public String openId; @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY) private Key id; @Persistent private String name; @Persistent(mappedBy = "cardio") private List<CardioValue> values = new ArrayList<CardioValue>(); public Cardio(String name) { setName(name); } public Long getId() { if(id != null) { return id.getId(); } else { return 0L; } } public Key getKey() { return id; } public String getName() { return name; } public String getUid() { if(openId != null) { return openId; } else { return ""; } } public List<CardioValue> getValues() { return values; } public void setId(Long id) { Key k = null; if(id != null && id != 0) { k = KeyFactory.createKey(Cardio.class.getSimpleName(), id); } this.id = k; } public void setName(String name) { this.name = name; } public void setUid(String uid) { this.openId = uid; } public void setValues(List<CardioValue> values) { this.values = values; } public Long getUidOld() { return uid; } @SuppressWarnings("unchecked") public JSONObject getJson() { JSONObject obj=new JSONObject(); obj.put("id",getId()); obj.put("name",getName()); obj.put("openId",getUid()); JSONArray list = new JSONArray(); for(CardioValue value : getValues()) { list.add(value.getJson()); } obj.put("values", list); return obj; } }