Skip to content
Snippets Groups Projects
Commit 0703007b authored by Gabriel Copat's avatar Gabriel Copat
Browse files

Fixed naming issue with packages

parent 2ed47eaf
No related branches found
No related tags found
1 merge request!33Resolve "As a QR-scanning connoisseur , I want to unlock stickers after scanning a QR code to feel a sense of reward."
Showing
with 22 additions and 26 deletions
package team5.smartTowns;
package Team5.SmartTowns;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
......
package team5.smartTowns.data;
package Team5.SmartTowns.data;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
......
//Holds variable data for the locations table (landmarks)
package team5.smartTowns.data;
package Team5.SmartTowns.data;
import lombok.AllArgsConstructor;
import lombok.Data;
......
//Holds locations data repository (landmarks)
package team5.smartTowns.data;
package Team5.SmartTowns.data;
import java.util.List;
......
//Implements the locations repository using JDBC
package team5.smartTowns.data;
package Team5.SmartTowns.data;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;
......
//Holds variable data for the trails table
package team5.smartTowns.data;
package Team5.SmartTowns.data;
import lombok.AllArgsConstructor;
import lombok.Data;
......
//Holds trails data repository
package team5.smartTowns.data;
package Team5.SmartTowns.data;
import java.util.List;
......
//Implements the trails repository using JDBC
package team5.smartTowns.data;
package Team5.SmartTowns.data;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;
......
package team5.smartTowns.landmarks;
package Team5.SmartTowns.landmarks;
import jakarta.validation.constraints.Email;
import jakarta.validation.constraints.NotEmpty;
......
package team5.smartTowns.landmarks;
package Team5.SmartTowns.landmarks;
import team5.smartTowns.data.Location;
import team5.smartTowns.data.LocationRepository;
import Team5.SmartTowns.data.Location;
import Team5.SmartTowns.data.LocationRepository;
import jakarta.validation.Valid;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
......
/*AUTHOR: Gabriel Copat*/
package team5.smartTowns.rewards;
package Team5.SmartTowns.rewards;
import lombok.Getter;
......
package team5.smartTowns.rewards;
package Team5.SmartTowns.rewards;
import lombok.Getter;
......
package team5.smartTowns.rewards;
package Team5.SmartTowns.rewards;
import lombok.Getter;
......
//Holds locations data repository
package team5.smartTowns.rewards;
import team5.smartTowns.rewards.Badge;
import team5.smartTowns.rewards.Sticker;
package Team5.SmartTowns.rewards;
import java.util.List;
......
//Implements the locations repository using JDBC
package team5.smartTowns.rewards;
package Team5.SmartTowns.rewards;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.stereotype.Repository;
import team5.smartTowns.users.User;
import java.util.List;
......
/*AUTHOR: Gabriel Copat*/
package team5.smartTowns.rewards;
package Team5.SmartTowns.rewards;
import lombok.Getter;
......
package team5.smartTowns.towns;
package Team5.SmartTowns.towns;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
......
package team5.smartTowns.towns;
package Team5.SmartTowns.towns;
import java.util.ArrayList;
import java.util.List;
......
package team5.smartTowns.towns;
package Team5.SmartTowns.towns;
import lombok.Data;
......
package team5.smartTowns.trails;
package Team5.SmartTowns.trails;
import lombok.Data;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment