com.brihaspathee.zeus.permissions.TradingPartnerDeletePermission Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tp-service Show documentation
Show all versions of tp-service Show documentation
Service that contains all Trading Partner Information
The newest version!
package com.brihaspathee.zeus.permissions;
import org.springframework.security.access.prepost.PreAuthorize;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 21, January 2022
* Time: 12:48 PM
* Project: Zeus
* Package Name: com.zeus.permissions
* To change this template use File | Settings | File and Code Template
*/
@Retention(RetentionPolicy.RUNTIME)
@PreAuthorize("hasAnyAuthority('tp.delete')")
public @interface TradingPartnerDeletePermission {
}