All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geoserver.config.ImagingInfo Maven / Gradle / Ivy

The newest version!
/* Copyright (c) 2001 - 2008 TOPP - www.openplans.org. All rights reserved.
 * This code is licensed under the GPL 2.0 license, available at the root
 * application directory.
 */
package org.geoserver.config;

import java.io.Serializable;
import java.util.Collection;
import java.util.Map;

/**
 * GeoServer imaging configuration.
 * 
 * @author Justin Deoliveira, The Open Planning Project
 * 
 */
public interface ImagingInfo {

    // JAI getJAI();
    // void setJAI(JAI jai);
    //	
    // SunTileCache getJAICache();
    // void setJAICache(SunTileCache jaiCache);

    // boolean getImageIOCache();
    // void setImageIOCache(boolean imageIOCache);

    /**
     * Identifer.
     */
    String getId();

    /**
     * @return Returns the imageFormats.
     * @uml.property name="imageFormats"
     * @uml.associationEnd multiplicity="(0 -1)"
     *                     inverse="imagingInfo:org.geoserver.config.ImageFormatInfo"
     */
    Collection getImageFormats();
    
    /**
     * Returns the image format corresponding to the specified mime type, 
     * or null if it does exist.
     */
    ImageFormatInfo getImageFormatByMimeType( String mimeType );

    /**
     * @uml.property name="allowInterpolation"
     */
    boolean getAllowInterpolation();

    /**
     * @uml.property name="allowInterpolation"
     */
    void setAllowInterpolation(boolean allowInterpolation);

    /**
     * @uml.property name="recycling"
     */
    boolean getRecycling();

    /**
     * @uml.property name="recycling"
     */
    void setRecycling(boolean recycling);

    /**
     * @uml.property name="tilePriority"
     */
    int getTilePriority();

    /**
     * @uml.property name="tilePriority"
     */
    void setTilePriority(int tilePriority);

    /**
     * @uml.property name="tileThreads"
     */
    int getTileThreads();

    /**
     * @uml.property name="tileThreads"
     */
    void setTileThreads(int tileThreads);

    String getTileCache();
    
    void setTileCache( String tileCache );
        
    /**
     * @uml.property name="memoryCapacity"
     */
    double getMemoryCapacity();

    /**
     * @uml.property name="memoryCapacity"
     */
    void setMemoryCapacity(double memoryCapacity);

    /**
     * @uml.property name="memoryThreshold"
     */
    double getMemoryThreshold();

    /**
     * @uml.property name="memoryThreshold"
     */
    void setMemoryThreshold(double memoryThreshold);
    
    /**
     * @uml.property name="metadata"
     */
    Map getMetadata();

    Map getClientProperties();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy