Android Open Source - SecNote Config Obj






From Project

Back to project page SecNote.

License

The source code is released under:

GNU General Public License

If you think the Android project SecNote listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package org.jdamico.secnote.dataobjects;
/*from w w w.j  a  v a 2s  . c o  m*/
/*
 * This file is part of SECNOTE (written by Jose Damico).
 * 
 *    SECNOTE is free software: you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License (version 2) 
 *    as published by the Free Software Foundation.
 *
 *    SECNOTE is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with SECNOTE.  If not, see <http://www.gnu.org/licenses/>.
 */

public class ConfigObj {

  private String encAlgo = null;
  private String hashedKey = null;
  private boolean isGpsEnabled = false;
  private String panicPassword = null;
  private int panicNumber = 0;
  
  public ConfigObj(String encAlgo, String hashedKey, boolean isGpsEnabled, String panicPassword, int panicNumber) {
    super();
    this.encAlgo = encAlgo;
    this.hashedKey = hashedKey;
    this.isGpsEnabled = isGpsEnabled;
    this.panicPassword = panicPassword;
    this.panicNumber = panicNumber;
  }
  public ConfigObj() {}
  public String getEncAlgo() {
    return encAlgo;
  }
  public void setEncAlgo(String encAlgo) {
    this.encAlgo = encAlgo;
  }
  public String getHashedKey() {
    return hashedKey;
  }
  public void setHashedKey(String hashedKey) {
    this.hashedKey = hashedKey;
  }
  public boolean isGpsEnabled() {
    return isGpsEnabled;
  }
  public void setGpsEnabled(boolean isGpsEnabled) {
    this.isGpsEnabled = isGpsEnabled;
  }
  public String getPanicPassword() {
    return panicPassword;
  }
  public void setPanicPassword(String panicPassword) {
    this.panicPassword = panicPassword;
  }
  public int getPanicNumber() {
    return panicNumber;
  }
  public void setPanicNumber(int panicNumber) {
    this.panicNumber = panicNumber;
  }
  
  
  
  
}




Java Source Code List

org.jdamico.secnote.SecNoteAboutActivity.java
org.jdamico.secnote.SecNoteAuthActivity.java
org.jdamico.secnote.SecNoteConfigActivity.java
org.jdamico.secnote.SecNoteDetailActivity.java
org.jdamico.secnote.SecNoteDetailFragment.java
org.jdamico.secnote.SecNoteEditorActivity.java
org.jdamico.secnote.SecNoteListActivity.java
org.jdamico.secnote.SecNoteListFragment.java
org.jdamico.secnote.SecNoteMainActivity.java
org.jdamico.secnote.commons.ActivityHelper.java
org.jdamico.secnote.commons.AppMessages.java
org.jdamico.secnote.commons.Constants.java
org.jdamico.secnote.commons.SecNoteException.java
org.jdamico.secnote.commons.StaticObj.java
org.jdamico.secnote.commons.Utils.java
org.jdamico.secnote.commons.XMLParser.java
org.jdamico.secnote.crypto.CryptoUtils.java
org.jdamico.secnote.dataobjects.ConfigObj.java
org.jdamico.secnote.dataobjects.CryptoAlgoObj.java
org.jdamico.secnote.dataobjects.NoteItemObj.java
org.jdamico.secnote.util.SystemUiHiderBase.java
org.jdamico.secnote.util.SystemUiHiderHoneycomb.java
org.jdamico.secnote.util.SystemUiHider.java