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

io.protostuff.generator.html.json.service.ServiceMethod Maven / Gradle / Ivy

There is a newer version: 3.1.40
Show newest version
package io.protostuff.generator.html.json.service;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import java.util.Map;
import javax.annotation.Nullable;
import org.immutables.value.Value;

/**
 * JSON node representing service method.
 *
 * @author Kostiantyn Shchepanovskyi
 */
@Value.Immutable
@JsonSerialize(as = ImmutableServiceMethod.class)
@JsonDeserialize(as = ImmutableServiceMethod.class)
public interface ServiceMethod {

    String name();

    @Nullable
    String description();

    String argTypeId();

    String returnTypeId();

    Map options();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy