001/*
002 * (C) Copyright 2006-2009 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
017public class StyleInfo {
018
019    private String name;
020
021    private String bank;
022
023    private String collection;
024
025    private String resource;
026
027    private String preview;
028
029    public StyleInfo(String name, String bank, String collection, String resource, String preview) {
030        this.name = name;
031        this.bank = bank;
032        this.collection = collection;
033        this.resource = resource;
034        this.preview = preview;
035    }
036
037    public String getName() {
038        return name;
039    }
040
041    public void setName(String name) {
042        this.name = name;
043    }
044
045    public String getBank() {
046        return bank;
047    }
048
049    public void setBank(String bank) {
050        this.bank = bank;
051    }
052
053    public String getCollection() {
054        return collection;
055    }
056
057    public void setCollection(String collection) {
058        this.collection = collection;
059    }
060
061    public String getResource() {
062        return resource;
063    }
064
065    public void setResource(String resource) {
066        this.resource = resource;
067    }
068
069    public String getPreview() {
070        return preview;
071    }
072
073    public void setPreview(String preview) {
074        this.preview = preview;
075    }
076
077}