package design.runtime; import design.model.Golfer; public final class Session { private static Golfer currentGolfer; public static Golfer getCurrentGolfer() { return currentGolfer; } public static void setCurrentGolfer(Golfer currentGolfer) { Session.currentGolfer = currentGolfer; } }