📄 modelservicedescriptor.java
字号:
/* * $Id: ModelServiceDescriptor.java 12422 2008-07-29 19:28:48Z tcarlson $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.api.model;import org.mule.api.registry.ServiceDescriptor;import org.mule.api.registry.ServiceException;/** * <code>ModelServiceDescriptor</code> describes the necessery information for * creating a model from a service descriptor. A service descriptor should be * located at META-INF/services/org/mule/models/<type> where type is the * type of the model to be created. The service descriptor is in the form of * string key value pairs and supports a number of properties, descriptions of which * can be found here: http://www.muledocs.org/Model+Service+Descriptors. */public interface ModelServiceDescriptor extends ServiceDescriptor{ Model createModel() throws ServiceException; Class getModelClass() throws ServiceException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -