-
Notifications
You must be signed in to change notification settings - Fork 815
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WW-4636 - File upload error message always in default language
- Loading branch information
1 parent
1af1887
commit 835cc7c
Showing
8 changed files
with
175 additions
and
22 deletions.
There are no files selected for viewing
104 changes: 104 additions & 0 deletions
104
core/src/main/java/org/apache/struts2/dispatcher/LocalizedMessage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* | ||
* $Id$ | ||
* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.struts2.dispatcher; | ||
|
||
import java.util.Arrays; | ||
|
||
public class LocalizedMessage { | ||
private final Class clazz; | ||
private final String textKey; | ||
private final String defaultMessage; | ||
private final Object[] args; | ||
|
||
public LocalizedMessage(Class clazz, String textKey, String defaultMessage, Object[] args) { | ||
this.clazz = clazz; | ||
this.textKey = textKey; | ||
this.defaultMessage = defaultMessage; | ||
this.args = args; | ||
} | ||
|
||
public Class getClazz() { | ||
return clazz; | ||
} | ||
|
||
public String getTextKey() { | ||
return textKey; | ||
} | ||
|
||
public String getDefaultMessage() { | ||
return defaultMessage; | ||
} | ||
|
||
public Object[] getArgs() { | ||
return args; | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
final int prime = 31; | ||
int result = 1; | ||
result = prime * result + Arrays.hashCode(args); | ||
result = prime * result + ((clazz == null) ? 0 : clazz.hashCode()); | ||
result = prime * result + ((defaultMessage == null) ? 0 : defaultMessage.hashCode()); | ||
result = prime * result + ((textKey == null) ? 0 : textKey.hashCode()); | ||
return result; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object obj) { | ||
if (this == obj) { | ||
return true; | ||
} | ||
if (obj == null) { | ||
return false; | ||
} | ||
if (getClass() != obj.getClass()) { | ||
return false; | ||
} | ||
LocalizedMessage other = (LocalizedMessage) obj; | ||
if (!Arrays.equals(args, other.args)) { | ||
return false; | ||
} | ||
if (clazz == null) { | ||
if (other.clazz != null) { | ||
return false; | ||
} | ||
} else if (!clazz.equals(other.clazz)) { | ||
return false; | ||
} | ||
if (defaultMessage == null) { | ||
if (other.defaultMessage != null) { | ||
return false; | ||
} | ||
} else if (!defaultMessage.equals(other.defaultMessage)) { | ||
return false; | ||
} | ||
if (textKey == null) { | ||
if (other.textKey != null) { | ||
return false; | ||
} | ||
} else if (!textKey.equals(other.textKey)) { | ||
return false; | ||
} | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters