/** * Licensed to Apereo under one or more contributor license * agreements. See the NOTICE file distributed with this work * for additional information regarding copyright ownership. * Apereo licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a * copy of the License at the following location: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.jasig.portlet.courses.mvc.wrapper; /** * Created with IntelliJ IDEA. * User: Sengupta5 * Date: 8/26/13 * Time: 11:45 AM * To change this template use File | Settings | File Templates. */ public class LocationWrapper { private String displayName; private String identifier; private String streetAddress; private double latitude; private double longitude; private String room; private String url; public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public LocationWrapper(String displayName,String identifier,String streetAddress,double latitude,double longitude,String room,String url) { this.setDisplayName(displayName); this.setIdentifier(identifier); this.setStreetAddress(streetAddress); this.setLatitude(latitude); this.setLongitude(longitude); this.setRoom(room); this.setUrl(url); } public String getIdentifier() { return identifier; } public void setIdentifier(String identifier) { this.identifier = identifier; } public String getStreetAddress() { return streetAddress; } public void setStreetAddress(String streetAddress) { this.streetAddress = streetAddress; } public double getLatitude() { return latitude; } public void setLatitude(double latitude) { this.latitude = latitude; } public double getLongitude() { return longitude; } public void setLongitude(double longitude) { this.longitude = longitude; } public String getRoom() { return room; } public void setRoom(String room) { this.room = room; } public String getDisplayName() { return displayName; } public void setDisplayName(String displayName) { this.displayName = displayName; } }