Package io.toro.martini.invocation
Class ServiceGroup
- java.lang.Object
-
- io.toro.martini.invocation.ServiceGroup
-
- All Implemented Interfaces:
Serializable
public abstract class ServiceGroup extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ServiceGroup.Builder
static class
ServiceGroup.Type
-
Constructor Summary
Constructors Constructor Description ServiceGroup()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static ServiceGroup.Builder
builder()
abstract String
name()
abstract String
packageName()
String
qualifiedName()
abstract List<io.toro.martini.invocation.Service>
services()
abstract ServiceGroup.Builder
toBuilder()
abstract ServiceGroup.Type
type()
-
-
-
Method Detail
-
type
public abstract ServiceGroup.Type type()
-
name
public abstract String name()
-
packageName
public abstract String packageName()
-
services
public abstract List<io.toro.martini.invocation.Service> services()
-
qualifiedName
public String qualifiedName()
-
builder
public static ServiceGroup.Builder builder()
-
toBuilder
public abstract ServiceGroup.Builder toBuilder()
-
-