Back to project page SmartPass.
The source code is released under:
Copyright (c) 2013 Dax Earl, Aaron Golliver Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal ...
If you think the Android project SmartPass listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.smartpass; // w w w. j a v a 2 s. co m import java.io.Serializable; public class UserAccount implements Serializable { /** * */ private static final long serialVersionUID = 3508430212625390708L; public UserAccount(String newUsername, String encryptedPassword, String folder, String websitename) { this.username = newUsername; this.encryptedPassword = encryptedPassword; this.folder = folder; this.websitename = websitename; } public final String username; public final String websitename; public final String encryptedPassword; public final String folder; @Override public String toString() { return "username: " + username; } }