aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/role/UnboundRole.java
diff options
context:
space:
mode:
Diffstat (limited to 'controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/role/UnboundRole.java')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/role/UnboundRole.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/role/UnboundRole.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/role/UnboundRole.java
deleted file mode 100644
index f01d6cbf602..00000000000
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/role/UnboundRole.java
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.vespa.hosted.controller.api.role;
-
-/**
- * A {@link Role} with an unlimited {@link Context}.
- *
- * @author jonmv
- */
-public class UnboundRole extends Role {
-
- UnboundRole(RoleDefinition roleDefinition) {
- super(roleDefinition, Context.unlimited());
- }
-
- @Override
- public String toString() {
- return "role '" + definition() + "'";
- }
-
-}