blob: 3b47033f3778cf66668e200dc1423e1b7329714b [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.wiki.attachment;
import org.apache.wiki.WikiEngine;
import org.apache.wiki.WikiPage;
import org.apache.wiki.api.core.Engine;
/**
* Describes an attachment. Attachments are actually derivatives of a WikiPage, since they do actually have a WikiName as well.
*/
public class Attachment extends WikiPage implements org.apache.wiki.api.core.Attachment {
private String m_fileName;
private String m_parentName;
private boolean m_cacheable = true;
/**
* Creates a new attachment. The final name of the attachment will be a synthesis of the parent page name and the file name.
*
* @param engine The Engine which is hosting this attachment.
* @param parentPage The page which will contain this attachment.
* @param fileName The file name for the attachment.
*/
public Attachment( final Engine engine, final String parentPage, final String fileName ) {
super( engine, parentPage + "/" + fileName );
m_parentName = parentPage;
m_fileName = fileName;
}
/**
* Creates a new attachment. The final name of the attachment will be a synthesis of the parent page name and the file name.
*
* @param engine The Engine which is hosting this attachment.
* @param parentPage The page which will contain this attachment.
* @param fileName The file name for the attachment.
*/
public Attachment( final WikiEngine engine, final String parentPage, final String fileName ) {
this( ( Engine )engine, parentPage, fileName );
}
/**
* Returns a human-readable, only-debugging-suitable description.
*
* @return A debugging string
*/
@Override
public String toString() {
return "Attachment [" + getName() + ";mod=" + getLastModified() + "]";
}
/**
* Returns the file name of the attachment.
*
* @return A String with the file name.
*/
public String getFileName() {
return m_fileName;
}
/**
* Sets the file name of this attachment.
*
* @param name The name of the attachment. Must be a legal file name without the path.
*/
public void setFileName( final String name ) {
m_fileName = name;
}
/**
* Returns the name of the parent of this Attachment, i.e. the page which contains this attachment.
*
* @return String depicting the parent of the attachment.
*/
public String getParentName() {
return m_parentName;
}
/**
* Returns true, if this attachment can be cached by the user agent. By default attachments are cacheable.
*
* @return False, if the attachment should not be cached by the user agent.
* @since 2.5.34
*/
public boolean isCacheable() {
return m_cacheable;
}
/**
* Sets this attachment to be cacheable or not. This mostly concerns things like DynamicAttachments, but it may be useful for
* certain AttachmentProviders as well.
*
* @param value True or false, depending on whether you want this attachment to be cacheable or not.
* @since 2.5.34
*/
public void setCacheable( final boolean value ) {
m_cacheable = value;
}
}