blob: b51e8810ade61a20e6bd5c6d0ab75a0b7901fdaa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.mdm.businessobjects.entity;
import java.io.Serializable;
public class FileSize implements Serializable {
private static final long serialVersionUID = 1228535240780890498L;
private String remotePath;
private String size;
public FileSize() {
// intentially empty
}
/**
*
* @return
*/
public String getRemotePath() {
return remotePath;
}
/**
*
* @param remotePath
*/
public void setRemotePath(String remotePath) {
this.remotePath = remotePath;
}
/**
*
* @return
*/
public String getSize() {
return size;
}
/**
*
* @param size
*/
public void setSize(String size) {
this.size = size;
}
}