Skip to content

Commit e2f5d5d

Browse files
committed
bf
1 parent 9931dec commit e2f5d5d

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

src/main/java/org/openstack/model/identity/Endpoint.java

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,30 @@
22

33
public interface Endpoint {
44

5+
String getId();
6+
7+
void setId(String id);
8+
59
String getRegion();
10+
11+
void setRegion(String region);
612

713
String getServiceId();
14+
15+
void setServiceId(String serviceId);
816

917
String getPublicURL();
18+
19+
void setPublicURL(String publicURL);
1020

1121
String getAdminURL();
22+
23+
void setAdminURL(String adminURL);
1224

1325
String getInternalURL();
26+
27+
void setInternalURL(String internalURL);
1428

15-
public abstract String getId();
29+
1630

1731
}

0 commit comments

Comments
 (0)