Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
package org.litesoft.prioritizer.server.pos;

import org.litesoft.orsup.nonpublic.*;

public abstract class UserNamesGO
        extends AbstractPONames {
    public static final String OBJECT_NAME = "User";

    public static final String DATASTORE_NAME = "org.litesoft.prioritizer.server.pos.User";

    protected UserNamesGO( AbstractPONames pBuiltBy, String pParentPath ) {
        super( pBuiltBy, OBJECT_NAME, DATASTORE_NAME, pParentPath );
    }

    /**
     * ID
     */
    public final String aID = mParentPath + "ID";

    /**
     * Boolean
     */
    public final String aActive = mParentPath + "Active";

    /**
     * ToOne
     */
    public final String aCurrentRestrictedResource = mParentPath + "CurrentRestrictedResource";

    public UserXrefRestrictedResourceNames rCurrentRestrictedResource() {
        return (UserXrefRestrictedResourceNames) toOne( this, aCurrentRestrictedResource, UserXrefRestrictedResourceNames.Factory.INSTANCE );
    }

    /**
     * TextLines
     */
    public final String aCurrentRestrictedResourceAllowedRoles = mParentPath + "CurrentRestrictedResourceAllowedRoles";

    /**
     * Boolean
     */
    public final String aDemoUser = mParentPath + "DemoUser";

    /**
     * String
     */
    public final String aFirstName = mParentPath + "FirstName";

    /**
     * String
     */
    public final String aFullName = mParentPath + "FullName";

    /**
     * Boolean
     */
    public final String aHelpDeskMember = mParentPath + "HelpDeskMember";

    /**
     * String
     */
    public final String aHexPassword = mParentPath + "HexPassword";

    /**
     * String
     */
    public final String aLastName = mParentPath + "LastName";

    /**
     * ToOne
     */
    public final String aLastRestrictedResource = mParentPath + "LastRestrictedResource";

    public RestrictedResourceNames rLastRestrictedResource() {
        return (RestrictedResourceNames) toOne( this, aLastRestrictedResource, RestrictedResourceNames.Factory.INSTANCE );
    }

    /**
     * String
     */
    public final String aLastRestrictedResourceRole = mParentPath + "LastRestrictedResourceRole";

    /**
     * String
     */
    public final String aLogonEmail = mParentPath + "LogonEmail";

    /**
     * String
     */
    public final String aMiddleInitial = mParentPath + "MiddleInitial";

    /**
     * Password
     */
    public final String aPassword = mParentPath + "Password";

    /**
     * String
     */
    public final String aPhoneNumber = mParentPath + "PhoneNumber";

    /**
     * Boolean
     */
    public final String aResetPassword = mParentPath + "ResetPassword";

    /**
     * Boolean
     */
    public final String aRestrictedResourceManage = mParentPath + "RestrictedResourceManage";

    /**
     * Boolean
     */
    public final String aSuperAdmin = mParentPath + "SuperAdmin";

    /**
     * Boolean
     */
    public final String aVisibleToCurrentRestrictedResource = mParentPath + "VisibleToCurrentRestrictedResource";

    /**
     * ToMany
     */
    public final String aCreatedStories = mParentPath + "CreatedStories";

    public StoryNames rCreatedStories() {
        return (StoryNames) toOne( this, aCreatedStories, StoryNames.Factory.INSTANCE );
    }

    public StoryNames cCreatedStories() {
        return (StoryNames) toMany( this, aCreatedStories, StoryNames.Factory.INSTANCE );
    }

    /**
     * ToMany
     */
    public final String aEmails = mParentPath + "Emails";

    public EmailNames rEmails() {
        return (EmailNames) toOne( this, aEmails, EmailNames.Factory.INSTANCE );
    }

    public EmailNames cEmails() {
        return (EmailNames) toMany( this, aEmails, EmailNames.Factory.INSTANCE );
    }

    /**
     * ToMany
     */
    public final String aPhones = mParentPath + "Phones";

    public PhoneNames rPhones() {
        return (PhoneNames) toOne( this, aPhones, PhoneNames.Factory.INSTANCE );
    }

    public PhoneNames cPhones() {
        return (PhoneNames) toMany( this, aPhones, PhoneNames.Factory.INSTANCE );
    }

    /**
     * ToMany
     */
    public final String aRestrictedResources = mParentPath + "RestrictedResources";

    public UserXrefRestrictedResourceNames rRestrictedResources() {
        return (UserXrefRestrictedResourceNames) toOne( this, aRestrictedResources, UserXrefRestrictedResourceNames.Factory.INSTANCE );
    }

    public UserXrefRestrictedResourceNames cRestrictedResources() {
        return (UserXrefRestrictedResourceNames) toMany( this, aRestrictedResources, UserXrefRestrictedResourceNames.Factory.INSTANCE );
    }

    /**
     * ToMany
     */
    public final String aStoryUpdates = mParentPath + "StoryUpdates";

    public StoryUpdateNames rStoryUpdates() {
        return (StoryUpdateNames) toOne( this, aStoryUpdates, StoryUpdateNames.Factory.INSTANCE );
    }

    public StoryUpdateNames cStoryUpdates() {
        return (StoryUpdateNames) toMany( this, aStoryUpdates, StoryUpdateNames.Factory.INSTANCE );
    }

    public static class CollectionOf
            extends UserNames
            implements CollectionOfPONamesAccessor {
        private String mCollectionPath;

        public CollectionOf( String pCollectionPath ) {
            super( null, "" );

            mCollectionPath = pCollectionPath;
        }

        @Override
        public String getCollectionPath() {
            return mCollectionPath;
        }

        @Override
        public String toString() {
            return "c" + super.toString();
        }
    }

    public static class Factory
            implements IFactory {
        public static final IFactory INSTANCE = new Factory();

        @Override
        public AbstractPONames createToOne( AbstractPONames pBuiltBy, String pParentPath ) {
            return new UserNames( pBuiltBy, pParentPath );
        }

        @Override
        public AbstractPONames createToMany( String pCollectionPath ) {
            return new UserNames.CollectionOf( pCollectionPath );
        }
    }

    public static final UserNames INSTANCE = new UserNames( null, "" );
}

Commits for litesoft/trunk/GWT_Sandbox/Prioritizer/src/org/litesoft/prioritizer/server/pos/UserNamesGO.java

Diff revisions: vs.
Revision Author Commited Message
948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

398 GeorgeS picture GeorgeS Mon 15 Aug, 2011 19:57:47 +0000