1 package com.ontotext.ordi.wsmo4rdf.remote;
2
3 public enum ORDIServiceType {
4 FACTORY("wsmo4rdf-fact"), SOURCE("wsmo4rdf-src"), CONNECTION("wsmo4rdf-con");
5
6 /**
7 * Name used in construction of URIs
8 */
9 private final String serviceName;
10
11 ORDIServiceType(String svcName) {
12 this.serviceName = svcName;
13 }
14
15 public String getServiceName() {
16 return this.serviceName;
17 }
18 }