/** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF 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 * * 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.apache.airavata; import java.util.List; public class UserProfileDAO { private String firstName; private String lastName; private String middleInitials; private String userName; private String email; private String country; private String organization; private List<String> Phones; private String gatewayID; private String address; public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } public List<String> getPhones() { return Phones; } public void setPhones(List<String> phones) { Phones = phones; } public String getGatewayID() { return gatewayID; } public void setGatewayID(String gatewayID) { this.gatewayID = gatewayID; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getOrganization() { return organization; } public void setOrganization(String organization) { this.organization = organization; } public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public String getMiddleInitials() { return middleInitials; } public void setMiddleInitials(String middleInitials) { this.middleInitials = middleInitials; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } }