blob: 94002fa1804821e4e3f44eb149d064c1985742e5 [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.uima.resource;
/**
* A type of <code>ResourceSpecifier</code> that locate an installed pear <code>Resource</code>.
*
*/
public interface PearSpecifier extends ResourceServiceSpecifier {
/**
* Retrieves the PEAR path at which the pear Resource is located.
*
* @return a string
*/
public String getPearPath();
/**
* Sets the PEAR path at which a Resource is located.
*
* @param aPearPath
* a pear path string
*/
public void setPearPath(String aPearPath);
/**
* Gets parameters that may be read by the pear resource class when it is initialized.
*
* @return an array of parameters. This will never return <code>null</code>.
*/
public Parameter[] getParameters();
/**
* Sets parameters that may be read by the pear resource class when it is initialized.
*
* @param parameters the Parameters to set.
*/
public void setParameters(Parameter[] parameters);
}