1
2
3
4
5
6
7
8
9
10
11
12
13 package com.eviware.soapui.impl.support;
14
15 import com.eviware.soapui.impl.support.definition.InterfaceDefinition;
16 import com.eviware.soapui.model.iface.Interface;
17
18 public interface DefinitionContext<T extends Interface>
19 {
20 public boolean hasSchemaTypes();
21
22 public boolean isCached();
23
24 public T getInterface();
25
26 public InterfaceDefinition<T> getInterfaceDefinition() throws Exception;
27
28 public String export(String path) throws Exception;
29
30 public boolean loadIfNecessary() throws Exception;
31 }