34 lines
1022 B
Java
Executable File
34 lines
1022 B
Java
Executable File
/*
|
|
* Copyright (C) 2004 Red Hat Inc. All Rights Reserved.
|
|
*
|
|
* The contents of this file are subject to the Open Software License v2.1
|
|
* (the "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
* http://rhea.redhat.com/licenses/osl2.1.html.
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
*/
|
|
package com.arsdigita.cms.contentassets;
|
|
|
|
import com.arsdigita.runtime.ScriptContext;
|
|
import com.arsdigita.loader.PackageLoader;
|
|
|
|
/**
|
|
* Loader
|
|
*
|
|
* @author Rafael H. Schloming <rhs@mit.edu>
|
|
* @version $Revision: #2 $ $Date: 2004/03/30 $
|
|
* @version $Id: FileAttachmentLoader.java 287 2005-02-22 00:29:02Z sskracic $
|
|
**/
|
|
|
|
public class FileAttachmentLoader extends PackageLoader {
|
|
|
|
public void run(final ScriptContext ctx) {
|
|
// nada
|
|
}
|
|
}
|