KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > info > magnolia > module > admininterface > commands > BaseRepositoryCommand


1 /**
2  *
3  * Magnolia and its source-code is licensed under the LGPL.
4  * You may copy, adapt, and redistribute this file for commercial or non-commercial use.
5  * When copying, adapting, or redistributing this document in keeping with the guidelines above,
6  * you are required to provide proper attribution to obinary.
7  * If you reproduce or distribute the document without making any substantive modifications to its content,
8  * please use the following attribution line:
9  *
10  * Copyright 2006 obinary Ltd. (http://www.obinary.com) All rights reserved.
11  *
12  */

13 package info.magnolia.module.admininterface.commands;
14
15 import info.magnolia.commands.MgnlCommand;
16
17
18 public abstract class BaseRepositoryCommand extends MgnlCommand {
19
20     private String JavaDoc path = "/";
21
22     private String JavaDoc repository;
23
24     private String JavaDoc uuid;
25
26     /**
27      * @return the repository
28      */

29     public String JavaDoc getRepository() {
30         return repository;
31     }
32
33     /**
34      * @param repository the repository to set
35      */

36     public void setRepository(String JavaDoc repository) {
37         this.repository = repository;
38     }
39
40     /**
41      * @return the path
42      */

43     public String JavaDoc getPath() {
44         return path;
45     }
46
47     /**
48      * @param path the path to set
49      */

50     public void setPath(String JavaDoc path) {
51         this.path = path;
52     }
53
54     /**
55      * @return the uuid
56      */

57     public String JavaDoc getUuid() {
58         return this.uuid;
59     }
60
61     /**
62      * @param uuid the uuid to set
63      */

64     public void setUuid(String JavaDoc uuid) {
65         this.uuid = uuid;
66     }
67
68 }
69
Popular Tags