git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/Common/storagehub-model@173463 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
7c89eac1ea
commit
3071eb0ee1
|
@ -10,5 +10,5 @@ import java.lang.annotation.Target;
|
|||
public @interface Attribute {
|
||||
|
||||
String value();
|
||||
boolean isReadOnly() default false;
|
||||
boolean isReadOnly() default true;
|
||||
}
|
||||
|
|
|
@ -38,7 +38,7 @@ public class Item {
|
|||
|
||||
boolean locked;
|
||||
|
||||
@Attribute("jcr:title")
|
||||
@Attribute(value ="jcr:title")
|
||||
String title;
|
||||
|
||||
@Attribute("jcr:description")
|
||||
|
@ -68,7 +68,7 @@ public class Item {
|
|||
@NodeAttribute(value=ACCOUNTING_NAME, isReadOnly=true)
|
||||
Accounting accounting;
|
||||
|
||||
@NodeAttribute(value=METADATA_NAME, isReadOnly=true)
|
||||
@NodeAttribute(value=METADATA_NAME, isReadOnly=false)
|
||||
Metadata propertyMap;
|
||||
|
||||
public String getOwner() {
|
||||
|
|
Loading…
Reference in New Issue