Skip to content

Package: WSDL

WSDL

nameinstructionbranchcomplexitylinemethod
WSDL(File, List, List, String)
M: 15 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 6 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*
2: * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
3: *
4: * This program and the accompanying materials are made available under the
5: * terms of the Eclipse Distribution License v. 1.0, which is available at
6: * http://www.eclipse.org/org/documents/edl-v10.php.
7: *
8: * SPDX-License-Identifier: BSD-3-Clause
9: */
10:
11: package com.sun.xml.ws.test.model;
12:
13: import com.sun.istack.Nullable;
14:
15: import java.io.File;
16: import java.util.List;
17:
18: /**
19: * @author Bhakti Mehta
20: */
21: public class WSDL {
22:
23: //Optional WSDL file that describes this service.
24: @Nullable
25: public final File wsdlFile;
26:
27: //Optional imported wsdls that are imported by the primary wsdl (wsdlFile)
28: @Nullable
29: public final List<File> importedWsdls;
30:
31: //Optional schema files that are imported by the wsdl
32: @Nullable
33: public final List<File> schemas;
34:
35: //Optional relative location of the WSDL (under WEB-INF/wsdl tree)
36: @Nullable
37: public final String relativeLocation;
38:
39: public WSDL(File wsdlFile, List<File> importedWsdls, List<File> schemafiles, String relativeLocation) {
40: this.wsdlFile = wsdlFile;
41: this.importedWsdls = importedWsdls;
42: this.schemas = schemafiles;
43: this.relativeLocation = relativeLocation;
44: }
45:
46: }