Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[20] Save login data #266

Open
JaRutkowski opened this issue Dec 21, 2020 · 0 comments
Open

[20] Save login data #266

JaRutkowski opened this issue Dec 21, 2020 · 0 comments
Labels
enhancement New feature or request
Projects

Comments

@JaRutkowski
Copy link
Owner

JaRutkowski commented Dec 21, 2020

As a user, I want to save my login data so that there's no need to type that data all the time.

Consider to user temp file (src\controller\utils\com\javafee\elibrary\core\common\SystemProperties):

	initializeTempProperties();

	private static void initializeTempProperties() {
		File tempFile = new File(System.getProperty("java.io.tmpdir") + "/elibrary.config");
		try {
			tempFile.createNewFile();
			/* ... */
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
@JaRutkowski JaRutkowski added the enhancement New feature or request label Dec 21, 2020
@JaRutkowski JaRutkowski added this to Enhancement high priority in Backlog Dec 21, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Backlog
Enhancement high priority
Development

No branches or pull requests

1 participant