OW2 Consortium elastic-grid

Rev

Rev 65 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 jeje 1
/**
182 jeje 2
 * Elastic Grid
2 jeje 3
 * Copyright (C) 2007-2008 Elastic Grid, LLC.
4
 *
182 jeje 5
 * This program is free software: you can redistribute it and/or modify
6
 * it under the terms of the GNU Affero General Public License as
55 jeje 7
 * published by the Free Software Foundation, either version 3 of the
182 jeje 8
 * License, or (at your option) any later version.
2 jeje 9
 *
182 jeje 10
 * This program is distributed in the hope that it will be useful,
55 jeje 11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
182 jeje 13
 * GNU Affero General Public License for more details.
55 jeje 14
 *
182 jeje 15
 * You should have received a copy of the GNU Affero General Public License
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
2 jeje 17
 */
18
 
19
package com.elasticgrid;
20
 
21
import java.lang.annotation.*;
22
 
23
/**
24
 * @author Jerome Bernard
25
 */
26
@Documented
27
@Retention(value = RetentionPolicy.RUNTIME)
28
@Target(ElementType.TYPE)
29
public @interface ServiceInterface {
30
    Class value();
31
}