src/main/java/com/microsoft/azure/functions/annotation/ServiceBusTopicOutput.java [36:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  String name();

  /**
   * <p>
   * Defines how Functions runtime should treat the parameter value. Possible values are:
   * </p>
   * <ul>
   * <li>"" or string: treat it as a string whose value is serialized from the parameter</li>
   * <li>binary: treat it as a binary data whose value comes from for example
   * OutputBinding&lt;byte[]&gt;</li>
   * </ul>
   * 
   * @return The dataType which will be used by the Functions runtime.
   */
  String dataType() default "";

  /**
   * Defines the name of the Service Bus topic to which to write.
   * 
   * @return The Service Bus topic name string.
   */
  String topicName();

  /**
   * Defines the subscription name of the Service Bus topic to which to write.
   * 
   * @return The Service Bus topic subscription name string.
   */
  String subscriptionName();

  /**
   * Defines the app setting name that contains the Service Bus connection string.
   * 
   * @return The app setting name of the connection string.
   */
  String connection();

  /**
   * Defines the permission of the Service Bus topic to which to write.
   * 
   * @return The Service Bus topic permission.
   */
  AccessRights access() default AccessRights.MANAGE;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/microsoft/azure/functions/annotation/ServiceBusTopicTrigger.java [53:97]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  String name();

  /**
   * <p>
   * Defines how Functions runtime should treat the parameter value. Possible values are:
   * </p>
   * <ul>
   * <li>"": get the value as a string, and try to deserialize to actual parameter type like
   * POJO</li>
   * <li>string: always get the value as a string</li>
   * <li>binary: get the value as a binary data, and try to deserialize to actual parameter type
   * byte[]</li>
   * </ul>
   * 
   * @return The dataType which will be used by the Functions runtime.
   */
  String dataType() default "";

  /**
   * Defines the name of the Service Bus topic to which to bind.
   * 
   * @return The Service Bus topic name string.
   */
  String topicName();

  /**
   * Defines the subscription name of the Service Bus topic to which to bind.
   * 
   * @return The Service Bus topic subscription name string.
   */
  String subscriptionName();

  /**
   * Defines the app setting name that contains the Service Bus connection string.
   * 
   * @return The app setting name of the connection string.
   */
  String connection();

  /**
   * Defines the permission of the Service Bus topic to which to bind.
   * 
   * @return The Service Bus topic permission.
   */
  AccessRights access() default AccessRights.MANAGE;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



