001/*
002 * (C) Copyright 2006-2010 Nuxeo SAS <http://nuxeo.com> and others
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Jean-Marc Orliaguet, Chalmers
011 *
012 * $Id$
013 */
014
015package org.nuxeo.theme.resources;
016
017import org.nuxeo.common.xmap.annotation.XNode;
018import org.nuxeo.common.xmap.annotation.XObject;
019
020@XObject("import")
021public final class BankImport {
022
023    @XNode("@bank")
024    private String bankName;
025
026    @XNode("@collection")
027    private String collection;
028
029    @XNode("@src")
030    private String srcFilePath;
031
032    public BankImport() {
033    }
034
035    public String getBankName() {
036        return bankName;
037    }
038
039    public void setBankName(String bankName) {
040        this.bankName = bankName;
041    }
042
043    public String getSrcFilePath() {
044        return srcFilePath;
045    }
046
047    public void setSrcFilePath(String srcFilePath) {
048        this.srcFilePath = srcFilePath;
049    }
050
051    public String getCollection() {
052        return collection;
053    }
054
055    public void setCollection(String collection) {
056        this.collection = collection;
057    }
058
059}