blob: 48b15e9065c3d67bc42d5364a4dcd30755ebf1a6 [file] [log] [blame]
/*
* 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.myfaces.tobago.example.demo;
import java.io.Serializable;
public class UploadItem implements Serializable {
private String name;
private long size;
private String type;
private String action;
public UploadItem(final String name, final long size, final String type, final String action) {
this.name = name;
this.size = size;
this.type = type;
this.action = action;
}
public String getName() {
return name;
}
public void setName(final String name) {
this.name = name;
}
public long getSize() {
return size;
}
public void setSize(final long size) {
this.size = size;
}
public String getType() {
return type;
}
public void setType(final String type) {
this.type = type;
}
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
}