-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
614e95a
commit 748c7b3
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
scim-server/src/main/java/org/gluu/oxtrust/service/metric/MetricService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package org.gluu.oxtrust.service.metric; | ||
|
||
import javax.enterprise.context.ApplicationScoped; | ||
import javax.inject.Named; | ||
|
||
import org.gluu.model.ApplicationType; | ||
import org.gluu.persist.PersistenceEntryManager; | ||
|
||
/** | ||
* Store and retrieve metric | ||
* | ||
* @author Yuriy Movchan Date: 01/15/2021 | ||
*/ | ||
@ApplicationScoped | ||
@Named(MetricService.METRIC_SERVICE_COMPONENT_NAME) | ||
public class MetricService extends org.gluu.service.metric.MetricService { | ||
|
||
public static final String METRIC_SERVICE_COMPONENT_NAME = "metricService"; | ||
|
||
private static final long serialVersionUID = 7875838160379126796L; | ||
|
||
@Override | ||
public String baseDn() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public ApplicationType getApplicationType() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public PersistenceEntryManager getEntryManager() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public org.gluu.service.metric.MetricService getMetricServiceInstance() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public String getNodeIndetifier() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public boolean isMetricReporterEnabled() { | ||
return false; | ||
} | ||
|
||
} |