Subversion Repositories XServices

Rev

Rev 23 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23 Rev 46
Line 12... Line 12...
12
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 *   See the License for the specific language governing permissions and
13
 *   See the License for the specific language governing permissions and
14
 *   limitations under the License.
14
 *   limitations under the License.
15
 */
15
 */
Line 16... Line 16...
16
 
16
 
Line 17... Line 17...
17
package net.brutex.xservices.ws;
17
package net.brutex.xservices.ws.impl;
18
 
18
 
19
import javax.jws.WebService;
19
import javax.jws.WebService;
20
import net.brutex.xservices.types.FileSetResource;
20
import net.brutex.xservices.types.FileSetResource;
21
import net.brutex.xservices.types.HostConnection;
21
import net.brutex.xservices.types.HostConnection;
-
 
22
import net.brutex.xservices.types.MailMimeType;
22
import net.brutex.xservices.types.MailMimeType;
23
import net.brutex.xservices.types.ReturnCode;
-
 
24
import net.brutex.xservices.util.BrutexNamespaces;
-
 
25
import net.brutex.xservices.util.RunTask;
23
import net.brutex.xservices.types.ReturnCode;
26
import net.brutex.xservices.ws.MiscService;
24
import net.brutex.xservices.util.RunTask;
27
 
25
import org.apache.cxf.annotations.WSDLDocumentation;
28
import org.apache.cxf.annotations.WSDLDocumentation;
26
import org.apache.cxf.annotations.WSDLDocumentationCollection;
29
import org.apache.cxf.annotations.WSDLDocumentationCollection;
27
import org.apache.tools.ant.taskdefs.HostInfo;
30
import org.apache.tools.ant.taskdefs.HostInfo;
Line 28... Line 31...
28
import org.apache.tools.ant.taskdefs.Sleep;
31
import org.apache.tools.ant.taskdefs.Sleep;
29
import org.apache.tools.ant.taskdefs.email.EmailTask;
32
import org.apache.tools.ant.taskdefs.email.EmailTask;
30
 
33
 
31
/**
34
/**
32
 *
35
 * 
33
 * @author Brian Rosenberger, bru@brutex.de
-
 
34
 */
36
 * @author Brian Rosenberger, bru@brutex.de
35
@WSDLDocumentationCollection(
37
 */
36
    {
38
@WSDLDocumentationCollection({
37
        @WSDLDocumentation("My portType documentation"),
39
		@WSDLDocumentation("My portType documentation"),
38
        @WSDLDocumentation(value = "My top level documentation",
40
		@WSDLDocumentation(value = "My top level documentation", placement = WSDLDocumentation.Placement.TOP),
39
                           placement = WSDLDocumentation.Placement.TOP),
-
 
40
        @WSDLDocumentation(value = "My binding doc",
-
 
41
                           placement = WSDLDocumentation.Placement.BINDING)
41
		@WSDLDocumentation(value = "My binding doc", placement = WSDLDocumentation.Placement.BINDING) })
42
    }
42
@WebService(
-
 
43
		targetNamespace = BrutexNamespaces.WS_XSERVICES, 
43
)
44
		endpointInterface = "net.brutex.xservices.ws.MiscService", 
Line 180... Line 127...
180
        sleep.setSeconds(seconds);
127
		sleep.setSeconds(seconds);