diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Console/ConsoleDisplayUtil.cs (renamed from OpenSim/ApplicationPlugins/Rest/Inventory/IRest.cs) | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/IRest.cs b/OpenSim/Framework/Console/ConsoleDisplayUtil.cs index 8b43d42..6417663 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/IRest.cs +++ b/OpenSim/Framework/Console/ConsoleDisplayUtil.cs | |||
@@ -25,19 +25,24 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | namespace OpenSim.ApplicationPlugins.Rest.Inventory | 28 | using System; |
29 | |||
30 | namespace OpenSim.Framework.Console | ||
29 | { | 31 | { |
30 | /// <summary> | 32 | /// <summary> |
31 | /// This interface represents the boundary between the general purpose | 33 | /// This will be a set of typical column sizes to allow greater consistency between console commands. |
32 | /// REST plugin handling, and the functionally specific handlers. The | ||
33 | /// handler knows only to initialize and terminate all such handlers | ||
34 | /// that it finds. Implementing this interface identifies the class as | ||
35 | /// a REST handler implementation. | ||
36 | /// </summary> | 34 | /// </summary> |
37 | 35 | public static class ConsoleDisplayUtil | |
38 | internal interface IRest | ||
39 | { | 36 | { |
40 | void Initialize(); | 37 | public const int CoordTupleSize = 11; |
41 | void Close(); | 38 | public const int PortSize = 5; |
39 | |||
40 | public const int EstateNameSize = 20; | ||
41 | public const int ParcelNameSize = 40; | ||
42 | public const int RegionNameSize = 20; | ||
43 | public const int UserNameSize = 35; | ||
44 | |||
45 | public const int UuidSize = 36; | ||
46 | public const int VectorSize = 15; | ||
42 | } | 47 | } |
43 | } | 48 | } \ No newline at end of file |