mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
This commit is contained in:
parent
85045bf6be
commit
c9b411d6cd
3891 changed files with 0 additions and 428084 deletions
|
|
@ -1,72 +0,0 @@
|
|||
/*
|
||||
Copyright 2012 KeepSafe Software Inc.
|
||||
|
||||
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.keepsafe.switchboard;
|
||||
|
||||
import org.json.JSONObject;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
/**
|
||||
* Single instance of an existing experiment for easier and cleaner code.
|
||||
*
|
||||
* @author Philipp Berner
|
||||
*
|
||||
*/
|
||||
public class Switch {
|
||||
|
||||
private Context context;
|
||||
private String experimentName;
|
||||
|
||||
/**
|
||||
* Creates an instance of a single experiment to give more convenient access to its values.
|
||||
* When the given experiment does not exist, it will give back default valued that can be found
|
||||
* in <code>Switchboard</code>. Developer has to know that experiment exists when using it.
|
||||
* @param c Application context
|
||||
* @param experimentName Name of the experiment as defined on the server
|
||||
*/
|
||||
public Switch(Context c, String experimentName) {
|
||||
this.context = c;
|
||||
this.experimentName = experimentName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if the experiment is active for this particular user.
|
||||
* @return Status of the experiment and false when experiment does not exist.
|
||||
*/
|
||||
public boolean isActive() {
|
||||
return SwitchBoard.isInExperiment(context, experimentName);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if the experiment has additional values.
|
||||
* @return true when values exist
|
||||
*/
|
||||
public boolean hasValues() {
|
||||
return SwitchBoard.hasExperimentValues(context, experimentName);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gives back all the experiment values in a JSONObject. This function checks if
|
||||
* values exists. If no values exist, it returns null.
|
||||
* @return Values in JSONObject or null if non
|
||||
*/
|
||||
public JSONObject getValues() {
|
||||
if(hasValues())
|
||||
return SwitchBoard.getExperimentValuesFromJson(context, experimentName);
|
||||
else
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue