org.wso2.carbon.config.annotation.Element类的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(12.0k)|赞(0)|评价(0)|浏览(202)

本文整理了Java中org.wso2.carbon.config.annotation.Element类的一些代码示例,展示了Element类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Element类的具体详情如下:
包路径:org.wso2.carbon.config.annotation.Element
类名称:Element

Element介绍

暂无

代码示例

代码示例来源:origin: org.wso2.carbon.dashboards/org.wso2.carbon.dashboards.core

  1. /**
  2. * This is the bean class for Role in deployment yaml.
  3. */
  4. public class Roles {
  5. @Element(description = "list of dashboard creator roles")
  6. private List<String> creators = Collections.emptyList();
  7. public List<String> getCreators() {
  8. return creators;
  9. }
  10. }

代码示例来源:origin: org.wso2.carbon.dashboards/org.wso2.carbon.dashboards.core

  1. /**
  2. * Bean class for dashboard SQl queries configurations.
  3. *
  4. * @since 4.0.0
  5. */
  6. public class QueryConfiguration {
  7. @Element(description = "database type")
  8. private String type;
  9. @Element(description = "DBMS version")
  10. private String version;
  11. @Element(description = "SQL queries mappings")
  12. private Map<String, String> mappings = Collections.emptyMap();
  13. public String getType() {
  14. return type;
  15. }
  16. public String getVersion() {
  17. return version;
  18. }
  19. public Optional<String> getQuery(String key) {
  20. return Optional.ofNullable(mappings.get(key));
  21. }
  22. }

代码示例来源:origin: org.wso2.carbon.analytics/org.wso2.carbon.sp.jobmanager.core

  1. /**
  2. * Manager node accessing credentials.
  3. */
  4. public class ManagerAccessCredentials {
  5. @Element(description = "Username across cluster", required = true)
  6. private String username;
  7. @Element(description = "Password across cluster")
  8. private String password;
  9. public String getUsername() {
  10. return username;
  11. }
  12. public void setUsername(String username) {
  13. this.username = username;
  14. }
  15. public String getPassword() {
  16. return password;
  17. }
  18. public void setPassword(String password) {
  19. this.password = password;
  20. }
  21. }

代码示例来源:origin: org.wso2.carbon.analytics-common/org.wso2.carbon.analytics.idp.client

  1. /**
  2. * User manager Element.
  3. */
  4. @Configuration(description = "User Manager Element")
  5. public class UserManagerElement {
  6. @Element(description = "Admin Role - Display name of the role defined in the user store", required = true)
  7. private String adminRole = "admin";
  8. @Element(description = "User Store")
  9. private UserStoreElement userStore = new UserStoreElement();
  10. public String getAdminRole() {
  11. return adminRole;
  12. }
  13. public UserStoreElement getUserStore() {
  14. return userStore;
  15. }
  16. }

代码示例来源:origin: org.wso2.carbon.auth/org.wso2.carbon.auth.rest.api.authenticators

  1. /**
  2. * Configuration for Authentication Interceptor
  3. */
  4. @Configuration(namespace = "wso2.carbon.authenticator", description = "Security Configuration Parameters")
  5. public class SecurityConfiguration {
  6. @Element(description = "list of web clients (eg: 127.0.0.1:9443) to allow make requests to allow any web client)")
  7. private List<String> allowedHosts = Collections.singletonList("*");
  8. @Element(description = "Mapping of authenticator")
  9. private Map<String, Map<String, String>> authenticator = new HashMap<>();
  10. public List<String> getAllowedHosts() {
  11. return allowedHosts;
  12. }
  13. public Map<String, Map<String, String>> getAuthenticator() {
  14. return authenticator;
  15. }
  16. }

代码示例来源:origin: org.wso2.carbon.analytics-common/org.wso2.carbon.analytics.idp.client

  1. /**
  2. * User store Element.
  3. */
  4. @Configuration(description = "User Store Element")
  5. public class UserStoreElement {
  6. @Element(description = "Groups", required = true)
  7. private List<RoleElement> roles = Collections.singletonList(new RoleElement());
  8. @Element(description = "Users", required = true)
  9. private List<UserElement> users = Collections.singletonList(new UserElement());
  10. public List<UserElement> getUsers() {
  11. return users;
  12. }
  13. public List<RoleElement> getRoles() {
  14. return roles;
  15. }
  16. }

代码示例来源:origin: org.wso2.carbon.analytics-common/org.wso2.carbon.analytics.idp.client

  1. public class UserChildElement {
  2. @Element(description = "Username", required = true)
  3. private String username = "admin";
  4. @Element(description = "Encrypted Password", required = true)
  5. private String password = "YWRtaW4=";
  6. @Element(description = "Properties associated with the user")
  7. private Map<String, String> properties = new HashMap<>();
  8. @Element(description = "List of comma separated role ids", required = true)
  9. private String roles = "1";

代码示例来源:origin: org.wso2.carbon.analytics-common/org.wso2.carbon.analytics.idp.client

  1. /**
  2. * REST API Authentication config Element.
  3. */
  4. @Configuration(description = "REST API Auth configurations")
  5. public class RESTAPIConfigurationElement {
  6. @Element(description = "Enable authentication for REST API", required = true)
  7. private String authEnable = "true";
  8. @Element(description = "APIs to be excluded when auth is enabled", required = true)
  9. private List<String> exclude = new ArrayList<>();
  10. public String getAuthEnable() {
  11. return authEnable;
  12. }
  13. public List<String> getExclude() {
  14. return exclude;
  15. }
  16. }

代码示例来源:origin: org.wso2.carbon.analytics-common/org.wso2.carbon.analytics.idp.client

  1. /**
  2. * Role Child Element.
  3. */
  4. @Configuration(description = "Role Child Element configuration")
  5. public class RoleChildElement {
  6. @Element(description = "Role Id", required = true)
  7. private String id = "1";
  8. @Element(description = "Role Display Name", required = true)
  9. private String displayName = "admin";
  10. public String getId() {
  11. return id;
  12. }
  13. public String getDisplayName() {
  14. return displayName;
  15. }
  16. }

代码示例来源:origin: wso2/carbon-kernel

  1. /**
  2. * Config bean for pendingCapabilityTimer.
  3. */
  4. @Configuration(description = "Configuration for the timer task which checks " +
  5. "for pending Capabilities")
  6. public class PendingCapabilityTimer {
  7. @Element(description = "delay in milliseconds before task is to be executed")
  8. private long delay = 60000;
  9. @Element(description = "time in milliseconds between successive task executions")
  10. private long period = 30000;
  11. public long getDelay() {
  12. return delay;
  13. }
  14. public long getPeriod() {
  15. return period;
  16. }
  17. }

代码示例来源:origin: wso2/carbon-kernel

  1. /**
  2. * Config bean for pendingCapabilityTimer.
  3. */
  4. @Configuration(description = "Configuration for the timer task which checks " +
  5. "for satisfiable RequiredCapabilityListeners periodically")
  6. public class CapabilityListenerTimer {
  7. @Element(description = "delay in milliseconds before task is to be executed")
  8. private long delay = 20;
  9. @Element(description = "time in milliseconds between successive task executions")
  10. private long period = 20;
  11. public long getDelay() {
  12. return delay;
  13. }
  14. public long getPeriod() {
  15. return period;
  16. }
  17. }

代码示例来源:origin: org.wso2.carbon.analytics/org.wso2.carbon.stream.processor.common

  1. public class ExtensionChildConfiguration {
  2. @Element(description = "Extension name")
  3. private String name = "";
  4. @Element(description = "Extension namespace")
  5. private String namespace = "";
  6. @Element(description = "Extension properties")
  7. private Map<String, String> properties;

代码示例来源:origin: wso2/msf4j

  1. /**
  2. * Configuration class MSF4J.
  3. */
  4. @Configuration(namespace = "wso2.msf4j.configuration", description = "MSF4J configuration")
  5. public class MSF4JConfig {
  6. @Element(description = "No of worker pool threads to handle MSF4J requests")
  7. private int threadCount = 100;
  8. @Element(description = "MSF4J thread pool name ")
  9. private String threadPoolName = "msf4j.executor.workerpool";
  10. public int getThreadCount() {
  11. return threadCount;
  12. }
  13. public void setThreadCount(int threadCount) {
  14. this.threadCount = threadCount;
  15. }
  16. public String getThreadPoolName() {
  17. return threadPoolName;
  18. }
  19. public void setThreadPoolName(String threadPoolName) {
  20. this.threadPoolName = threadPoolName;
  21. }
  22. }

代码示例来源:origin: org.wso2.carbon.lcm/org.wso2.carbon.lcm.sql

  1. /**
  2. * Configuration for Life cycles.
  3. */
  4. @Configuration (namespace = "wso2.lifecycle", description = "Life cycle Configuration")
  5. public class LifecycleConfig {
  6. @Element (description = "Enable or disable life cycle history")
  7. private boolean enableHistory = true;
  8. @Element (description = "Provide the jndi name of the lifecycle datasource")
  9. private String dataSourceName = Constants.LIFECYCLE_DATASOURCE;
  10. public boolean isEnableHistory() {
  11. return enableHistory;
  12. }
  13. public void setEnableHistory(boolean enableHistory) {
  14. this.enableHistory = enableHistory;
  15. }
  16. public String getDataSourceName() {
  17. return dataSourceName;
  18. }
  19. public void setDataSourceName(String dataSourceName) {
  20. this.dataSourceName = dataSourceName;
  21. }
  22. }

代码示例来源:origin: org.wso2.carbon.apimgt/org.wso2.carbon.apimgt.core

  1. /**
  2. * Class to hold PolicyDeployer configurations
  3. */
  4. @Configuration(description = "Policy Deployer connection configurations")
  5. public class PolicyDeployerConfiguration {
  6. @Element(description = "DAS execution plan REST API")
  7. private String serverURL = "http://localhost:9091";
  8. @Element(description = "Policy deployer credentials")
  9. private CredentialConfigurations policyDeployerCredentials = new CredentialConfigurations();
  10. public String getServerURL() {
  11. return serverURL;
  12. }
  13. public void setServerURL(String serverURL) {
  14. this.serverURL = serverURL;
  15. }
  16. public CredentialConfigurations getPolicyDeployerCredentials() {
  17. return policyDeployerCredentials;
  18. }
  19. public void setPolicyDeployerCredentials(CredentialConfigurations policyDeployerCredentials) {
  20. this.policyDeployerCredentials = policyDeployerCredentials;
  21. }
  22. }

代码示例来源:origin: org.wso2.carbon.apimgt/org.wso2.carbon.apimgt.core

  1. /**
  2. * Class to hold Google Analytics Tracking configurations.
  3. */
  4. @Configuration(description = "Analytics configurations")
  5. public class GoogleAnalyticsConfigurations {
  6. @Element(description = "Enable Google Analytics")
  7. private boolean enabled = false;
  8. @Element(description = "Google Analytics Tracking ID")
  9. private String trackingID = "UA-XXXXXXXX-X";
  10. public boolean isEnabled() {
  11. return enabled;
  12. }
  13. public void setEnabled(boolean enabled) {
  14. this.enabled = enabled;
  15. }
  16. public String getTrackingID() {
  17. return trackingID;
  18. }
  19. public void setTrackingID(String trackingID) {
  20. this.trackingID = trackingID;
  21. }
  22. }

代码示例来源:origin: org.wso2.carbon.apimgt/org.wso2.carbon.apimgt.core

  1. /**
  2. * Class to hold DataPublisher configurations
  3. */
  4. @Configuration(description = "Data Publisher connection configurations")
  5. public class DataPublisherConfigurations {
  6. @Element(description = "Reciever URL")
  7. private String receiverURL = "tcp://localhost:9612";
  8. @Element(description = "Data publisher credentials")
  9. private CredentialConfigurations dataPublisherCredentials = new CredentialConfigurations();
  10. public String getReceiverURL() {
  11. return receiverURL;
  12. }
  13. public void setReceiverURL(String receiverURL) {
  14. this.receiverURL = receiverURL;
  15. }
  16. public CredentialConfigurations getDataPublisherCredentials() {
  17. return dataPublisherCredentials;
  18. }
  19. public void setDataPublisherCredentials(CredentialConfigurations dataPublisherCredentials) {
  20. this.dataPublisherCredentials = dataPublisherCredentials;
  21. }
  22. }

代码示例来源:origin: wso2/msf4j

  1. /**
  2. * Configuration for HTTP Monitoring
  3. */
  4. @Configuration(namespace = "wso2.msf4j.analytics.configuration", description = "MSF4J Analytics configuration")
  5. public class HTTPMonitoringConfig {
  6. @Element(description = "Whether HTTP Monitoring is enables or not")
  7. private boolean enabled = false;
  8. @Element(description = "Configuration for DAS")
  9. private DasConfig das = new DasConfig();
  10. public boolean isEnabled() {
  11. return enabled;
  12. }
  13. public void setEnabled(boolean enabled) {
  14. this.enabled = enabled;
  15. }
  16. public DasConfig getDas() {
  17. return das;
  18. }
  19. public void setDas(DasConfig das) {
  20. this.das = das;
  21. }
  22. }

代码示例来源:origin: org.wso2.msf4j/msf4j-core

  1. /**
  2. * Configuration class MSF4J.
  3. */
  4. @Configuration(namespace = "wso2.msf4j.configuration", description = "MSF4J configuration")
  5. public class MSF4JConfig {
  6. @Element(description = "No of worker pool threads to handle MSF4J requests")
  7. private int threadCount = 100;
  8. @Element(description = "MSF4J thread pool name ")
  9. private String threadPoolName = "msf4j.executor.workerpool";
  10. public int getThreadCount() {
  11. return threadCount;
  12. }
  13. public void setThreadCount(int threadCount) {
  14. this.threadCount = threadCount;
  15. }
  16. public String getThreadPoolName() {
  17. return threadPoolName;
  18. }
  19. public void setThreadPoolName(String threadPoolName) {
  20. this.threadPoolName = threadPoolName;
  21. }
  22. }

代码示例来源:origin: org.wso2.carbon.apimgt/org.wso2.carbon.apimgt.core

  1. /**
  2. * Class to hold any user credentials
  3. */
  4. @Configuration(description = "User Credentials")
  5. public class CredentialConfigurations {
  6. @Element(description = "Username")
  7. private String username = "admin";
  8. @Element(description = "Password")
  9. private String password = "admin";
  10. public String getUsername() {
  11. return username;
  12. }
  13. public void setUsername(String username) {
  14. this.username = username;
  15. }
  16. public String getPassword() {
  17. return password;
  18. }
  19. public void setPassword(String password) {
  20. this.password = password;
  21. }
  22. }

相关文章

Element类方法