DJBErp -> DJB 클래스 이름 첨자 변경

This commit is contained in:
curry772
2026-05-27 10:49:22 +09:00
parent c12ff0a64a
commit c95307901e
3 changed files with 9 additions and 9 deletions
@@ -21,9 +21,9 @@ import com.eactive.eai.common.security.CryptoModuleService;
*
* 반환값: 복호화된 평문 (String)
*/
public class DJBErpDecryt extends PostfixMathCommand {
public class DJBDecryt extends PostfixMathCommand {
public DJBErpDecryt() {
public DJBDecryt() {
numberOfParameters = -1;
}
@@ -21,9 +21,9 @@ import com.eactive.eai.common.security.CryptoModuleService;
*
* 반환값: Base64 인코딩된 암호문 (String)
*/
public class DJBErpEncryt extends PostfixMathCommand {
public class DJBEncryt extends PostfixMathCommand {
public DJBErpEncryt() {
public DJBEncryt() {
numberOfParameters = -1;
}
@@ -33,7 +33,7 @@ import com.eactive.eai.common.security.CryptoModuleService;
import com.eactive.eai.common.util.ApplicationContextProvider;
@TestMethodOrder(MethodOrderer.DisplayName.class)
class DJBErpCryptoFunctionTest {
class DJBCryptoFunctionTest {
private static final String MODULE_NAME = "TEST_MODULE";
private static final String PLAIN_TEXT = "plaintext-value";
@@ -44,8 +44,8 @@ class DJBErpCryptoFunctionTest {
private static GenericApplicationContext ctx;
private static CryptoModuleService mockService;
private DJBErpDecryt decryt;
private DJBErpEncryt encryt;
private DJBDecryt decryt;
private DJBEncryt encryt;
// =========================================================================
// 클래스 초기화
@@ -73,8 +73,8 @@ class DJBErpCryptoFunctionTest {
reset(mockService);
when(mockService.decrypt(any(), anyMap(), isNull(), any(byte[].class))).thenReturn(PLAIN_BYTES);
when(mockService.encrypt(any(), anyMap(), isNull(), any(byte[].class))).thenReturn(CIPHER_BYTES);
decryt = new DJBErpDecryt();
encryt = new DJBErpEncryt();
decryt = new DJBDecryt();
encryt = new DJBEncryt();
}
// =========================================================================