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