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

Examples of org.openengsb.core.api.descriptor.ServiceDescriptor.Builder


public class AuthenticationJiraConnectorProvider extends AbstractConnectorProvider {

    @Override
    public ServiceDescriptor getDescriptor() {
        Builder builder = ServiceDescriptor.builder(strings);
        builder.id(id);
        builder.name("authentication.jira.name").description("authentication.jira.description");
        return builder.build();
    }
View Full Code Here


public class UserProjectsLdapConnectorProvider extends AbstractConnectorProvider {

    @Override
    public ServiceDescriptor getDescriptor() {
        Builder builder = ServiceDescriptor.builder(strings);
        builder.id(id);
        builder.name("userprojects.ldap.name").description("userprojects.ldap.description");

        return builder.build();
    }
View Full Code Here

TOP

Related Classes of org.openengsb.core.api.descriptor.ServiceDescriptor.Builder

Copyright © 2018 www.massapicom. 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.