/* * Copyright 2000-2013 Enonic AS * http://www.enonic.com/license */ package com.enonic.cms.api.client.model.content; import java.io.Serializable; public class FileInput extends AbstractIntValueInput implements Serializable { private static final long serialVersionUID = -4861942290213412257L; /** * @param name * @param contentKey If you supply null as input value, the existing value will be removed in a 'replace new' scenario. */ public FileInput( String name, Integer contentKey ) { super( InputType.FILE, name, contentKey ); } }