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

org.codehaus.enunciate.ClientName Maven / Gradle / Ivy

There is a newer version: 1.31
Show newest version
package org.codehaus.enunciate;

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

/**
 * Used to name a declaration something different on the client-side. E.g. rename an AMF class or C# property or something like that.
 *
 * @author Ryan Heaton
 */
@Target (
  { ElementType.PARAMETER, ElementType.FIELD, ElementType.METHOD ,ElementType.TYPE, ElementType.PACKAGE }
)
@Retention (
  RetentionPolicy.RUNTIME
)
public @interface ClientName {

  /**
   * The value of the client name.
   *
   * @return The value of the client name.
   */
  String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy