1 /*
2 * Copyright (c) 2002-2014, Mairie de Paris
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright notice
10 * and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright notice
13 * and the following disclaimer in the documentation and/or other materials
14 * provided with the distribution.
15 *
16 * 3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 *
32 * License 1.0
33 */
34 package fr.paris.lutece.plugins.phraseanet.business.embed;
35
36
37 /**
38 * Permalink
39 */
40 public class Permalink
41 {
42 // Variables declarations
43 private String _strCreatedOn;
44 private int _nId;
45 private boolean _bActivated;
46 private String _strLabel;
47 private String _strLastModified;
48 private String _strPageURL;
49 private String _strURL;
50
51 /**
52 * Returns the CreatedOn
53 * @return The CreatedOn
54 */
55 public String getCreatedOn( )
56 {
57 return _strCreatedOn;
58 }
59
60 /**
61 * Sets the CreatedOn
62 * @param strCreatedOn The CreatedOn
63 */
64 public void setCreatedOn( String strCreatedOn )
65 {
66 _strCreatedOn = strCreatedOn;
67 }
68
69 /**
70 * Returns the Id
71 * @return The Id
72 */
73 public int getId( )
74 {
75 return _nId;
76 }
77
78 /**
79 * Sets the Id
80 * @param nId The Id
81 */
82 public void setId( int nId )
83 {
84 _nId = nId;
85 }
86
87 /**
88 * Returns the IsActivated
89 * @return The IsActivated
90 */
91 public boolean isActivated( )
92 {
93 return _bActivated;
94 }
95
96 /**
97 * Sets the IsActivated
98 * @param bActivated The IsActivated
99 */
100 public void setActivated( boolean bActivated )
101 {
102 _bActivated = bActivated;
103 }
104
105 /**
106 * Returns the Label
107 * @return The Label
108 */
109 public String getLabel( )
110 {
111 return _strLabel;
112 }
113
114 /**
115 * Sets the Label
116 * @param strLabel The Label
117 */
118 public void setLabel( String strLabel )
119 {
120 _strLabel = strLabel;
121 }
122
123 /**
124 * Returns the LastModified
125 * @return The LastModified
126 */
127 public String getLastModified( )
128 {
129 return _strLastModified;
130 }
131
132 /**
133 * Sets the LastModified
134 * @param strLastModified The LastModified
135 */
136 public void setLastModified( String strLastModified )
137 {
138 _strLastModified = strLastModified;
139 }
140
141 /**
142 * Returns the PageURL
143 * @return The PageURL
144 */
145 public String getPageUrl( )
146 {
147 return _strPageURL;
148 }
149
150 /**
151 * Sets the PageURL
152 * @param strPageURL The PageURL
153 */
154 public void setPageUrl( String strPageURL )
155 {
156 _strPageURL = strPageURL;
157 }
158
159 /**
160 * Returns the URL
161 * @return The URL
162 */
163 public String getUrl( )
164 {
165 return _strURL;
166 }
167
168 /**
169 * Sets the URL
170 * @param strURL The URL
171 */
172 public void setUrl( String strURL )
173 {
174 _strURL = strURL;
175 }
176 }