GUAC-800: Remove stubs - no supported attributes for now.

This commit is contained in:
Michael Jumper
2015-05-24 18:48:52 -07:00
parent c5364f4bff
commit 191bc0d465
3 changed files with 3 additions and 9 deletions

View File

@@ -127,14 +127,12 @@ public class ModeledConnection extends ModeledGroupedDirectoryObject<ConnectionM
@Override
public Map<String, String> getAttributes() {
// FIXME: STUB
return Collections.<String, String>emptyMap();
}
@Override
public void setAttributes(Map<String, String> attributes) {
// FIXME: STUB
throw new UnsupportedOperationException("STUB");
// Drop all attributes - none currently supported
}
}

View File

@@ -112,14 +112,12 @@ public class ModeledConnectionGroup extends ModeledGroupedDirectoryObject<Connec
@Override
public Map<String, String> getAttributes() {
// FIXME: STUB
return Collections.<String, String>emptyMap();
}
@Override
public void setAttributes(Map<String, String> attributes) {
// FIXME: STUB
throw new UnsupportedOperationException("STUB");
// Drop all attributes - none currently supported
}
}

View File

@@ -183,14 +183,12 @@ public class ModeledUser extends ModeledDirectoryObject<UserModel> implements Us
@Override
public Map<String, String> getAttributes() {
// FIXME: STUB
return Collections.<String, String>emptyMap();
}
@Override
public void setAttributes(Map<String, String> attributes) {
// FIXME: STUB
throw new UnsupportedOperationException("STUB");
// Drop all attributes - none currently supported
}
}