Package org.openengsb.core.api.descriptor.ServiceDescriptor

Examples of org.openengsb.core.api.descriptor.ServiceDescriptor.Builder.description()


    @Override
    public ServiceDescriptor getDescriptor() {
        Builder builder = ServiceDescriptor.builder(strings);
        builder.id("external-connector-proxy");
        builder.name("proxy.name", "[proxy-name]");
        builder.description("proxy.description");
        builder.attribute(builder.newAttribute().id("portId").name("proxy.port.id")
            .description("proxy.port.description").build());
        builder.attribute(builder.newAttribute().id("destination").name("proxy.destination.name")
            .description("proxy.destination.description").build());
        builder.attribute(builder.newAttribute().id("serviceId").name("proxy.serviceId.name")
View Full Code Here


    public ServiceDescriptor getDescriptor() {
        Builder builder = ServiceDescriptor.builder(strings);

        builder.id("connector-composition");
        builder.name("composite.name", "[proxy-name]");
        builder.description("composite.description");

        builder.attribute(builder.newAttribute().id("queryString").name("composite.queryString.id")
            .description("composite.queryString.description").build());
        builder.attribute(builder.newAttribute().id("compositeStrategy").name("composite.strategy.id")
            .description("composite.strategy.description").build());
View Full Code Here

    public ServiceDescriptor getDescriptor() {
        Builder builder = ServiceDescriptor.builder(strings);

        builder.id("filewatcher");
        builder.name("filewatcher.name", "filewatcher");
        builder.description("filewatcher.description");

        builder.attribute(builder.newAttribute().id("watchfile").name("filewatcher.watchfile.id")
            .description("filewatcher.watchfile.description").build());

        return builder.build();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.