Files
eapim-admin-djb/src/main/java/com/eactive/ext/kjb/common/KjbPropertyValue.java
T
Rinjae 4d2421a6e7 Add API retrieval by organization code and enhance SSO user handling
- Implemented `getApisByOrgCode` method in `ObpApiService` to fetch APIs based on organization code.
- Added corresponding endpoint in `ObpApiController`.
- Updated `SsoController` to handle user creation without synchronization for existing users.
- Introduced new properties for SSO synchronization settings in `KjbProperty`.
2026-01-14 15:09:07 +09:00

15 lines
394 B
Java

package com.eactive.ext.kjb.common;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface KjbPropertyValue {
String key();
String defaultValue() default "";
String description() default "";
}