Application.java_skeleton_all_methods

classes_skeleton
Selim Eser 2024-06-06 11:41:53 +02:00
parent cf4dfbb021
commit 60d2271043
1 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,47 @@
package de.hs_mannheim.facade;
import java.util.TreeSet;
import de.hs_mannheim.domain.System;
public class Application {
private System running_system;
public Application(){
this.running_system = new System();
}
public boolean sign_in_user(String username, String password){
return true;
}
public boolean sign_up_user(String username, String password, String hometown, int zip,
String car_name, double car_co2_km, double car_avg_kmh, double bike_avg_kmh){
return true;
}
public void sign_out_user(){}
public boolean change_user_details(String username, String password, String hometown, int zip,
String car_name, double car_co2_km, double car_avg_kmh, double bike_avg_kmh){
return true;
}
public TreeSet<String> search(String hometown_or_zip){
return new TreeSet<String>();
}
public TreeSet<String> random_destinations(){
return new TreeSet<String>();
}
public String[] destination_details(String destination_zip){
return new String[1];
}
public String current_weather(){
return "";
}
}