blob: 7f5e4ebfa1c709038391565cda659cd1de931ddd [file] [log] [blame]
package org.apache.fulcrum.yaafi;
/*
* 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.
*/
import java.io.File;
/**
* This is a simple component that is only used to test the avalon component
* service.
*
* @author <a href="mailto:quintonm@bellsouth.net">Quinton McCombs</a>
*/
public interface TestComponent
{
/** the role name of the service */
static final String ROLE = "org.apache.fulcrum.yaafi.TestComponent";
/** the service method to be called during testing */
void test();
/**
* @return Returns the bar.
*/
String getBar();
/**
* @return Returns the componentName.
*/
String getComponentName();
/**
* @return Returns the decomissioned.
*/
boolean isDecomissioned();
/**
* @return Returns the foo.
*/
String getFoo();
/**
* @return Returns the urnAvalonClassLoader.
*/
ClassLoader getUrnAvalonClassLoader();
/**
* @return Returns the urnAvaloneHome.
*/
File getUrnAvaloneHome();
/**
* @return Returns the urnAvaloneTemp.
*/
File getUrnAvaloneTemp();
/**
* @return Returns the urnAvalonName.
*/
String getUrnAvalonName();
/**
* @return Returns the urnAvalonPartition.
*/
String getUrnAvalonPartition();
/**
* Always throws an exception
* @param reason reason for exception
* @param caller the method or class calling the exception
*/
void createException(String reason, Object caller);
/**
* Do something for the given time
*
* @param millis time in miliseconds
* @param arg arguments
*/
public void doSomething(long millis, Object arg);
}