@Component
public class SystemArchitecture
extends java.lang.Object
Constructor and Description |
---|
SystemArchitecture() |
Modifier and Type | Method and Description |
---|---|
void |
dataOperation()
A data service operation is the execution of any method defined on a
dao interface.
|
void |
inDataLayer()
A join point is in the data service layer if the method is defined
in a type in the com.netflix.genie.web.data.services package or any sub-package
under that.
|
void |
inResourceLayer()
A join point is in the resource layer if the method is defined
in a type in the com.netflix.genie.web.controllers package or any sub-package
under that.
|
void |
inServiceLayer()
A join point is in the service layer if the method is defined
in a type in the com.netflix.genie.web.services package or any sub-package
under that.
|
void |
resourceOperation()
A resource service is the execution of any method defined on a controller.
|
void |
serviceOperation()
A service operation is the execution of any method defined on a
service class/interface.
|
public void inResourceLayer()
public void inServiceLayer()
public void inDataLayer()
public void resourceOperation()
public void serviceOperation()
public void dataOperation()