Uses of Class
com.eviware.soapui.impl.rest.RestResource

Packages that use RestResource
com.eviware.soapui.impl.rest   
com.eviware.soapui.impl.rest.actions.resource   
com.eviware.soapui.impl.rest.actions.service   
com.eviware.soapui.impl.rest.actions.support   
com.eviware.soapui.impl.rest.panels.resource   
com.eviware.soapui.impl.wsdl.submit Submit-specific interfaces 
com.eviware.soapui.impl.wsdl.teststeps WsdlTestStep implementations 
com.eviware.soapui.impl.wsdl.teststeps.registry TestStep registry and factories 
com.eviware.soapui.model.tree.nodes Tree nodes for all SoapUI model items 
 

Uses of RestResource in com.eviware.soapui.impl.rest
 

Methods in com.eviware.soapui.impl.rest that return RestResource
 RestResource RestResource.addNewChildResource(java.lang.String name, java.lang.String path)
           
 RestResource RestService.addNewResource(java.lang.String name, java.lang.String path)
           
 RestResource RestResource.cloneChildResource(RestResource resource, java.lang.String name)
           
 RestResource RestService.cloneResource(RestResource resource, java.lang.String name)
           
 RestResource RestResourceContainer.cloneResource(RestResource resource, java.lang.String name)
           
 RestResource RestResource.cloneResource(RestResource resource, java.lang.String name)
           
 RestResource[] RestResource.getAllChildResources()
           
 RestResource RestResource.getChildResourceAt(int c)
           
 RestResource RestResource.getChildResourceByName(java.lang.String name)
           
 RestResource RestResource.getChildResourcetAt(int index)
           
 RestResource RestRequest.getOperation()
           
 RestResource RestService.getOperationAt(int index)
           
 RestResource RestService.getOperationByName(java.lang.String name)
           
 RestResource RestResource.getParentResource()
           
 RestResource RestRequest.getResource()
           
 RestResource RestService.getResourceByFullPath(java.lang.String resourcePath)
           
 

Methods in com.eviware.soapui.impl.rest that return types with arguments of type RestResource
 java.util.List<RestResource> RestService.getAllResources()
           
 java.util.List<RestResource> RestResource.getChildResourceList()
           
 java.util.Map<java.lang.String,RestResource> RestService.getResources()
           
 

Methods in com.eviware.soapui.impl.rest with parameters of type RestResource
 RestResource RestResource.cloneChildResource(RestResource resource, java.lang.String name)
           
 RestResource RestService.cloneResource(RestResource resource, java.lang.String name)
           
 RestResource RestResourceContainer.cloneResource(RestResource resource, java.lang.String name)
           
 RestResource RestResource.cloneResource(RestResource resource, java.lang.String name)
           
 void RestResource.deleteChildResource(RestResource resource)
           
 void RestService.deleteResource(RestResource resource)
           
 void RestResourceContainer.deleteResource(RestResource resource)
           
 void RestResource.deleteResource(RestResource resource)
           
 

Constructors in com.eviware.soapui.impl.rest with parameters of type RestResource
RestRequest(RestResource resource, com.eviware.soapui.config.RestMethodConfig requestConfig, boolean forLoadTest)
           
RestResource(RestResource restResource, com.eviware.soapui.config.RestResourceConfig config)
           
 

Uses of RestResource in com.eviware.soapui.impl.rest.actions.resource
 

Methods in com.eviware.soapui.impl.rest.actions.resource that return RestResource
protected  RestResource NewRestChildResourceAction.createRestResource(RestResource parentResource, java.lang.String path, com.eviware.x.form.XFormDialog dialog)
           
 

Methods in com.eviware.soapui.impl.rest.actions.resource with parameters of type RestResource
protected  RestResource NewRestChildResourceAction.createRestResource(RestResource parentResource, java.lang.String path, com.eviware.x.form.XFormDialog dialog)
           
 void RenameRestResourceAction.perform(RestResource request, java.lang.Object param)
           
 void NewRestRequestAction.perform(RestResource resource, java.lang.Object param)
           
 void DeleteRestResourceAction.perform(RestResource resource, java.lang.Object param)
           
 void CloneRestResourceAction.perform(RestResource resource, java.lang.Object param)
           
 

Uses of RestResource in com.eviware.soapui.impl.rest.actions.service
 

Methods in com.eviware.soapui.impl.rest.actions.service that return RestResource
protected  RestResource NewRestResourceAction.createRestResource(RestService service, java.lang.String path, com.eviware.x.form.XFormDialog dialog)
           
 

Uses of RestResource in com.eviware.soapui.impl.rest.actions.support
 

Methods in com.eviware.soapui.impl.rest.actions.support that return RestResource
protected abstract  RestResource NewRestResourceActionBase.createRestResource(T service, java.lang.String path, com.eviware.x.form.XFormDialog dialog)
           
 

Methods in com.eviware.soapui.impl.rest.actions.support with parameters of type RestResource
protected  void NewRestResourceActionBase.createRequest(RestResource resource)
           
 

Uses of RestResource in com.eviware.soapui.impl.rest.panels.resource
 

Methods in com.eviware.soapui.impl.rest.panels.resource with parameters of type RestResource
 RestResourceDesktopPanel RestResourcePanelBuilder.buildDesktopPanel(RestResource resource)
           
 java.awt.Component RestResourcePanelBuilder.buildOverviewPanel(RestResource service)
           
 

Constructors in com.eviware.soapui.impl.rest.panels.resource with parameters of type RestResource
RestResourceDesktopPanel(RestResource modelItem)
           
 

Uses of RestResource in com.eviware.soapui.impl.wsdl.submit
 

Methods in com.eviware.soapui.impl.wsdl.submit that return RestResource
 RestResource RestMessageExchange.getResource()
           
 

Uses of RestResource in com.eviware.soapui.impl.wsdl.teststeps
 

Methods in com.eviware.soapui.impl.wsdl.teststeps that return RestResource
 RestResource RestTestRequest.getOperation()
           
 RestResource RestTestRequestStep.getResource()
           
 RestResource RestTestRequest.getResource()
           
 RestResource RestResponseMessageExchange.getResource()
           
 

Methods in com.eviware.soapui.impl.wsdl.teststeps with parameters of type RestResource
 void RestTestRequestStep.setResource(RestResource operation)
           
 void RestTestRequest.setResource(RestResource restResource)
           
 

Constructors in com.eviware.soapui.impl.wsdl.teststeps with parameters of type RestResource
RestTestRequest(RestResource resource, com.eviware.soapui.config.RestMethodConfig callConfig, HttpTestRequestStep testStep, boolean forLoadTest)
           
 

Uses of RestResource in com.eviware.soapui.impl.wsdl.teststeps.registry
 

Methods in com.eviware.soapui.impl.wsdl.teststeps.registry with parameters of type RestResource
 com.eviware.soapui.config.TestStepConfig RestRequestStepFactory.createNewTestStep(RestResource resource, java.lang.String name)
           
 

Uses of RestResource in com.eviware.soapui.model.tree.nodes
 

Methods in com.eviware.soapui.model.tree.nodes with parameters of type RestResource
 void RestResourceTreeNode.addChildResource(RestResource restResource)
           
 

Constructors in com.eviware.soapui.model.tree.nodes with parameters of type RestResource
RestResourceTreeNode(RestResource restResource, SoapUITreeModel treeModel)
           
 



Copyright © 2005-2008 eviware.com. All Rights Reserved.