All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sam.server.annotation.CrossOrigin Maven / Gradle / Ivy

package org.sam.server.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 허용 가능한 IP 목록을 정의합니다. 와일드카드(*) 선언시 모든 IP를 허용합니다.
 *
 * @author hypernova1
 * */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface CrossOrigin {

    /**
     * 허용할 주소 목록
     *
     * @return 허용할 주소
     * */
    String[] value() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy