001/** 002 * Copyright 2015 Tampere University of Technology, Pori Department 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package service.tut.pori.contentanalysistest; 017 018import java.util.List; 019 020import javax.xml.bind.annotation.XmlAccessType; 021import javax.xml.bind.annotation.XmlAccessorType; 022import javax.xml.bind.annotation.XmlElement; 023import javax.xml.bind.annotation.XmlElementWrapper; 024import javax.xml.bind.annotation.XmlRootElement; 025 026import service.tut.pori.contentanalysis.Definitions; 027 028/** 029 * Contains details of a single picasa album 030 */ 031@Deprecated 032@XmlRootElement(name="album") 033@XmlAccessorType(XmlAccessType.NONE) 034public class PicasaAlbum { 035 @XmlElement(name = "albumId") 036 private String _id = null; 037 @XmlElement(name = "name") 038 private String _name = null; 039 @XmlElement(name = Definitions.ELEMENT_GUID) 040 @XmlElementWrapper(name = "UIDList") 041 private List<String> _guids = null; 042 /** 043 * @return the id 044 */ 045 public String getId() { 046 return _id; 047 } 048 /** 049 * @param id the id to set 050 */ 051 public void setId(String id) { 052 _id = id; 053 } 054 /** 055 * @return the name 056 */ 057 public String getName() { 058 return _name; 059 } 060 /** 061 * @param name the name to set 062 */ 063 public void setName(String name) { 064 _name = name; 065 } 066 /** 067 * @return the guids 068 */ 069 public List<String> getGUIDs() { 070 return _guids; 071 } 072 /** 073 * @param guids the guids to set 074 */ 075 public void setGUIDs(List<String> guids) { 076 _guids = guids; 077 } 078}