Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/DATT/src/org/litesoft/datt/server/pos/RestrictedResource.java

Diff revisions: vs.
  @@ -4,33 +4,27 @@
4 4 import org.litesoft.orsup.transact.*;
5 5 import org.litesoft.security.*;
6 6
7 - public class RestrictedResource extends RestrictedResourceGO implements SecurityRestrictedResource<RestrictedResource>
8 - {
9 - public RestrictedResource( Transaction pTransaction )
10 - {
7 + public class RestrictedResource extends RestrictedResourceGO implements SecurityRestrictedResource<RestrictedResource> {
8 + public RestrictedResource( Transaction pTransaction ) {
11 9 super( pTransaction );
12 10 }
13 11
14 - public RestrictedResource( ConstructionControl pConstructionControl )
15 - {
12 + public RestrictedResource( ConstructionControl pConstructionControl ) {
16 13 super( pConstructionControl );
17 14 }
18 15
19 16 @Override
20 - public String getPhone()
21 - {
17 + public String getPhone() {
22 18 return null; // Todo: xxx
23 19 }
24 20
25 21 @Override
26 - protected void LLclearPhone()
27 - {
22 + protected void LLclearPhone() {
28 23 // Todo: xxx
29 24 }
30 25
31 26 @Override
32 - protected void LLsetPhone( String pPhone )
33 - {
27 + protected void LLsetPhone( String pPhone ) {
34 28 // Todo: xxx
35 29 }
36 30 }