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

se.jbee.inject.service.ServiceMethod Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
/*
 *  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