01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.object.dna.api;
05:
06: /**
07: * A Literal Value Action.
08: */
09: public class LiteralAction {
10: private final Object value;
11:
12: public LiteralAction(Object value) {
13: this .value = value;
14: }
15:
16: public Object getObject() {
17: return this.value;
18: }
19: }
|