Subversion Repositories XServices

Rev

Rev 65 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
64 brianR 1
/*
2
 *   Copyright 2011 Brian Rosenberger (Brutex Network)
3
 *
4
 *   Licensed under the Apache License, Version 2.0 (the "License");
5
 *   you may not use this file except in compliance with the License.
6
 *   You may obtain a copy of the License at
7
 *
8
 *       http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 *   Unless required by applicable law or agreed to in writing, software
11
 *   distributed under the License is distributed on an "AS IS" BASIS,
12
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 *   See the License for the specific language governing permissions and
14
 *   limitations under the License.
15
 */
16
 
17
package net.brutex.xservices.util;
18
 
19
/**
20
 * Holds static documentation.
21
 *
22
 *
23
 * @author Brian Rosenberger, bru@brutex.de
24
 */
25
public class XServicesDocumentation {
26
 
27
 
28
    public static final String BRUTEX_COPYRIGHT = "" +
29
        "/*\n" +
30
    	"*   Copyright 2010 Brian Rosenberger (Brutex Network)\n" +
31
    	"*\n" +
32
    	"*   Licensed under the Apache License, Version 2.0 (the \"License\")\n" +
33
    	"*   you may not use this file except in compliance with the License.\n" +
34
    	"*   You may obtain a copy of the License at\n" +
35
    	"*\n" +
36
    	"*       http://www.apache.org/licenses/LICENSE-2.0\n" +
37
    	"*\n" +
38
    	"*   Unless required by applicable law or agreed to in writing, software\n" +
39
    	"*   distributed under the License is distributed on an \"AS IS\" BASIS,\n" +
40
    	"*   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n" +
41
    	"*   See the License for the specific language governing permissions and\n" +
42
    	"*   limitations under the License.\n" +
43
    	"*/";
44
 
45
 
46
    public static final String SERVICE_OPERATION_DOWNLOADFILE = "Download a file from the maschine where the service is running in order " +
47
	"to process it with the client. The file is either downloaded as a MTOM attachment or " +
48
	"as inline base64 encoded block. Keep in mind that unless you are using MTOM, a lot of " +
49
	"java heap memory is used.";
50
 
92 brianR 51
    public static final String SERVICE_OPERATION_ENCODEFILE = "Encodes a file.";
52
 
64 brianR 53
    public static final String SERVICE_OPERATION_UPLOADFILE = "Send a file from client to web service server using either " +
54
    "MTOM attachment or base64 inline attachment.";
55
 
56
    public static final String SERVICE_OPERATION_COPY = "Copies a fileset locally on the server.";
57
 
58
    public static final String SERVICE_OPERATION_COPYFILE = "Copies a single file locally on the server";
59
 
60
    public static final String SERVICE_OPERATION_LOADRESOURCE = "Load the content of a resource";
61
 
62
    public static final String SERVICE_OPERATION_LOADRESOURCEFROMARCHIVE = "Load the content of a resource";
63
 
64
    public static final String SERVICE_OPERATION_ECHOTOFILE = "Write or append a string to a file";
65
 
65 brianR 66
    public static final String SERVICE_OPERATION_REPLACEINFILE = "Replaces every <pattern> with a string in an ascii file";
67
 
68
    public static final String SERVICE_OPERATION_REPLACEINFILE2 = "Replaces every <pattern> with a string in an ascii file";
69
 
70
    public static final String SERVICE_OPERATION_REPLACEINFILEREGEX = "Replaces every <regex pattern> with a string in an ascii file";
71
 
64 brianR 72
    private XServicesDocumentation() {};
73
}