org.springframework.cloud.cloudfoundry.Tags Java Examples
The following examples show how to use
org.springframework.cloud.cloudfoundry.Tags.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: FileSystemServiceInfoCreator.java From multiapps-controller with Apache License 2.0 | 4 votes |
public FileSystemServiceInfoCreator() { super(new Tags(DEFAULT_FILE_SERVICE_LABEL), ""); }
Example #2
Source File: ObjectStoreServiceInfoCreator.java From multiapps-controller with Apache License 2.0 | 4 votes |
public ObjectStoreServiceInfoCreator() { super(new Tags(OBJECT_STORE_LABEL), ""); }
Example #3
Source File: DynatraceServiceInfoCreator.java From multiapps-controller with Apache License 2.0 | 4 votes |
public DynatraceServiceInfoCreator() { super(new Tags(DEFAULT_DYNATRACE_SERVICE_LABEL), ""); }
Example #4
Source File: KafkaServiceInfoCreator.java From kafka-service-broker with Apache License 2.0 | 4 votes |
public KafkaServiceInfoCreator() { super(new Tags(KafkaServiceInfo.URI_SCHEME), KafkaServiceInfo.URI_SCHEME); }
Example #5
Source File: GraphDatabaseServiceInfoCreator.java From micro-ecommerce with Apache License 2.0 | 4 votes |
public GraphDatabaseServiceInfoCreator() { super(new Tags("neo4j"), "neo4j"); }
Example #6
Source File: TwilioServiceInfoCreator.java From bluemix-cloud-connectors with Apache License 2.0 | 4 votes |
/** * Constructor. */ public TwilioServiceInfoCreator() { super(new Tags(), "https"); }
Example #7
Source File: DatabasesForCloudServiceInfoCreator.java From bluemix-cloud-connectors with Apache License 2.0 | 4 votes |
public DatabasesForCloudServiceInfoCreator(String label, String connectionName) { super(new Tags(label), (String[]) null); this.label = label; this.connectionName = connectionName; }
Example #8
Source File: CloudantServiceInfoCreator.java From bluemix-cloud-connectors with Apache License 2.0 | 4 votes |
/** * Constructor. */ public CloudantServiceInfoCreator() { super(new Tags(), CloudantServiceInfo.SCHEME); }
Example #9
Source File: SsoServiceInfoCreator.java From spring-cloud-sso-connector with Apache License 2.0 | 4 votes |
public SsoServiceInfoCreator() { super(new Tags()); }
Example #10
Source File: ConfigServerServiceInfoCreator.java From spring-cloud-services-connector with Apache License 2.0 | 4 votes |
public ConfigServerServiceInfoCreator() { super(new Tags(CONFIG_SERVER_SERVICE_TAG_NAME)); }
Example #11
Source File: HystrixAmqpServiceInfoCreator.java From spring-cloud-services-connector with Apache License 2.0 | 4 votes |
public HystrixAmqpServiceInfoCreator() { super(new Tags(TAG_NAME)); }
Example #12
Source File: EurekaServiceInfoCreator.java From spring-cloud-services-connector with Apache License 2.0 | 4 votes |
public EurekaServiceInfoCreator() { super(new Tags(EUREKA_SERVICE_TAG_NAME)); }
Example #13
Source File: CloudantServiceInfoCreator.java From todo-apps with Apache License 2.0 | 4 votes |
/** * Creates a new instance of the creator. */ public CloudantServiceInfoCreator() { super(new Tags(), "cloudant"); }