Back to project page liquid-sdk-android.
The source code is released under:
Apache License
If you think the Android project liquid-sdk-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright 2014-present Liquid Data Intelligence S.A. *// ww w .j a v a 2s. c o m * 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 io.lqd.sdk.model; import io.lqd.sdk.LQLog; import java.io.Serializable; import org.json.JSONException; import org.json.JSONObject; public class LQTarget implements Serializable { private static final long serialVersionUID = -8930972810546846549L; private String mId; public LQTarget(String id) { mId = id; } public LQTarget(JSONObject jsonObject){ try { mId = jsonObject.getString("id"); } catch (JSONException e) { LQLog.error("Parsing LQTarget: " + e.getMessage()); } } public JSONObject toJSON(){ JSONObject json = new JSONObject(); try { json.put("id", getId()); return json; } catch (JSONException e) { LQLog.error("LQTarget toJSON: " + e.getMessage()); } return null; } public String getId() { return mId; } }