ReadOnlyEntry.java
606 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.wcm.webservicesupport.impl;
import java.util.Map;
class ReadOnlyEntry
implements Map.Entry<String, Object> {
private final String key;
private final Object value;
ReadOnlyEntry(String key, Object value) {
this.key = key;
this.value = value;
}
@Override
public String getKey() {
return this.key;
}
@Override
public Object getValue() {
return this.value;
}
@Override
public Object setValue(Object value) {
throw new UnsupportedOperationException();
}
}