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

com.github.hippo.annotation.HippoService Maven / Gradle / Ivy

The newest version!
package com.github.hippo.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 声明在接口上 如果有多个接口需要提供SOA服务,serviceName必须一样
 * 
 * @author sl
 *
 */
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface HippoService {
  /**
   * 服务注册时的名字
   * 
   * @return 服务注册名
   */
  String serviceName();
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy