se.jbee.inject.service.ServiceMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of silk-di Show documentation
Show all versions of silk-di Show documentation
Silk Java dependency injection framework
/*
* Copyright (c) 2012, Jan Bernitt
*
* Licensed under the Apache License, Version 2.0, http://www.apache.org/licenses/LICENSE-2.0
*/
package se.jbee.inject.service;
/**
* The low level representation of a service.
*
* @author Jan Bernitt ([email protected])
*
* @param
* The return type of the method wired to this service
* @param
* The type of the parameter of the service
*/
public interface ServiceMethod
{
/**
* @return the value results from the execution of this service with the given argument as
* parameter.
*/
R invoke( P params );
enum ServiceClassExtension
implements Extension {
// no different options
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy