1+ /*
2+ * Copyright 2007 the original author or authors.
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+
117package org .springframework .ws .soap .security ;
218
319import javax .xml .namespace .QName ;
@@ -16,33 +32,25 @@ public abstract class WsSecurityFaultException extends WsSecurityException {
1632
1733 private String faultActor ;
1834
19- /**
20- * Construct a new <code>WsSecurityFaultException</code> with the given fault code, string, and actor.
21- */
35+ /** Construct a new <code>WsSecurityFaultException</code> with the given fault code, string, and actor. */
2236 public WsSecurityFaultException (QName faultCode , String faultString , String faultActor ) {
2337 super (faultString );
2438 this .faultCode = faultCode ;
2539 this .faultString = faultString ;
2640 this .faultActor = faultActor ;
2741 }
2842
29- /**
30- * Returns the fault code for the exception.
31- */
43+ /** Returns the fault code for the exception. */
3244 public QName getFaultCode () {
3345 return faultCode ;
3446 }
3547
36- /**
37- * Returns the fault string for the exception.
38- */
48+ /** Returns the fault string for the exception. */
3949 public String getFaultString () {
4050 return faultString ;
4151 }
4252
43- /**
44- * Returns the fault actor for the exception.
45- */
53+ /** Returns the fault actor for the exception. */
4654 public String getFaultActor () {
4755 return faultActor ;
4856 }
0 commit comments