01: /*
02: * File: mosScope.java
03: * Project: jMOS, com.aranova.java.jmos.enums.mosfield
04: * Revision: 0.9.1
05: * Date: 19-ene-2006 12:11:00
06: *
07: * Copyright (C) Aragón Innovación Tecnológica S.L.L.
08: * All rights reserved.
09: *
10: * This software is distributed under the terms of the Aranova License version 1.0.
11: * See the terms of the Aranova License in the documentation provided with this software.
12: */
13:
14: package com.aranova.java.jmos.enums.mosfield;
15:
16: /**
17: * This field implies the extent to which the mosExternalMetadata block will move through the NCS workflow.
18: * Accepted values are “OBJECT� “STORY� and “PLAYLIST�.
19: *
20: * @author <a href="http://www.aranova.net/contactar/">Daniel Sánchez</a>
21: * @version 0.9.1
22: * @since 0.9.1
23: */
24: public enum mosScope {
25: /**
26: * OBJECT.
27: */
28: OBJECT,
29: /**
30: * STORY.
31: */
32: STORY,
33: /**
34: * PLAYLIST.
35: */
36: PLAYLIST
37: }
|