org.switchyard.console.client.BeanFactory Maven / Gradle / Ivy
/*
* Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.switchyard.console.client;
import org.jboss.as.console.spi.BeanFactoryExtension;
import org.switchyard.console.client.model.Application;
import org.switchyard.console.client.model.ArtifactReference;
import org.switchyard.console.client.model.ArtifactReferenceCategory;
import org.switchyard.console.client.model.Binding;
import org.switchyard.console.client.model.ComponentReference;
import org.switchyard.console.client.model.ComponentService;
import org.switchyard.console.client.model.MessageMetrics;
import org.switchyard.console.client.model.QNameCategory;
import org.switchyard.console.client.model.Reference;
import org.switchyard.console.client.model.Service;
import org.switchyard.console.client.model.ServiceMetrics;
import org.switchyard.console.client.model.SystemDetails;
import org.switchyard.console.client.model.Throttling;
import org.switchyard.console.client.model.Transformer;
import org.switchyard.console.components.client.model.Component;
import com.google.web.bindery.autobean.shared.AutoBean;
import com.google.web.bindery.autobean.shared.AutoBeanFactory;
/**
* BeanFactory
*
* Factory for SwitchYard specific model beans.
*
* @author Rob Cernich
*/
@BeanFactoryExtension
@AutoBeanFactory.Category({QNameCategory.class, ArtifactReferenceCategory.class})
public interface BeanFactory extends AutoBeanFactory {
/**
* @return a new AutoBean
*/
AutoBean systemDetails();
/**
* @return a new AutoBean
*/
AutoBean application();
/**
* @return a new AutoBean
*/
AutoBean component();
/**
* @return a new AutoBean
*/
AutoBean service();
/**
* @return a new AutoBean
*/
AutoBean reference();
/**
* @return a new AutoBean
*/
AutoBean componentService();
/**
* @return a new AutoBean
*/
AutoBean binding();
/**
* @return a new AutoBean
*/
AutoBean transformer();
/**
* @return a new AutoBean
*/
AutoBean componentReference();
/**
* @return a new AutoBean
*/
AutoBean messageMetrics();
/**
* @return a new AutoBean
*/
AutoBean serviceMetrics();
/**
* @return a new AutoBean
*/
AutoBean artifactReference();
/**
* @return a new AutoBean
*/
AutoBean throttling();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy