Skip to content
Snippets Groups Projects
Select Git revision
  • 9896ad22c217036b78fc28231d756823a04d2ad4
  • main default protected
  • OZG-8280-CronJob
  • OZG-8217-AFM-InboxReference
  • release
  • OZG-8217-inbox-reference-identifier
  • develop
  • OZG-8075-NPE-wenn-der-Knoten-ORGID-leer-ist
  • OZG-7878-Resilienteres-Mapping-vom-AFM-Postfach-Address-Type
  • OZG-7144_extend_testfactory
  • OZG-7426-POC-DateitransferEingang
  • OZG-7144_orgid_lower_case
  • OZG-6922-reproduce-xdomea-bug
  • OZG-6710-Update-common-lib
  • OZG-6343-enable-dfoerdermittel-changes
  • OZG-6343-enable-dfoerdermittel
  • try-lasttests
  • formcycle-itcase-to-vorgangremoteservice
  • dfoerderfix
  • OZG-5156-Versammlungsanzeige-via-xta-adapter
  • OZG-5156-Anbindung-Versammlungsanzeige-2
  • 2.23.0
  • 2.22.0
  • 2.21.0
  • 2.20.0
  • 2.19.0
  • 2.18.1
  • 2.18.0
  • 2.17.0
  • 2.16.0
  • 2.15.0
  • 2.14.0
  • 2.13.0
  • 2.12.0
  • 2.11.0
  • 2.10.0
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.0
  • 2.6.0
41 results

EingangAspectPointcuts.java

Blame
  • EingangAspectPointcuts.java 704 B
    package de.ozgcloud.eingang;
    
    import org.aspectj.lang.annotation.Pointcut;
    
    public class EingangAspectPointcuts {
    
    	@Pointcut("execution(public * *(..))")
    	void anyPublicMethods() {
    		// aspect pointcut - no implementation needed
    	}
    
    	@Pointcut("within(de.ozgcloud..*)")
    	void anythingInOzgCloud() {
    		// aspect pointcut - no implementation needed
    	}
    
    	@Pointcut("anyPublicMethods() && anythingInOzgCloud()")
    	void anyPublicMethodInOzgCloud() {
    		// aspect pointcut - no implementation needed
    	}
    
    	@Pointcut("anyPublicMethodInOzgCloud() && target(de.ozgcloud.eingang.semantik.enginebased.EngineBasedMapper)")
    	void publicMethodInEngineBasedMapper() {
    		// aspect pointcut - no implementation needed
    	}
    }