File tree Expand file tree Collapse file tree 9 files changed +108
-0
lines changed
android/src/main/java/net/servicestack/client
client/src/main/java/net/servicestack/client Expand file tree Collapse file tree 9 files changed +108
-0
lines changed Original file line number Diff line number Diff line change 1+ package net .servicestack .client ;
2+
3+ /**
4+ * Created by mythz on 9/11/2015.
5+ */
6+ public interface IOptions {
7+ }
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015 ServiceStack LLC. All rights reserved.
2+ // License: https://servicestack.net/bsd-license.txt
3+
4+ package net .servicestack .client ;
5+
6+ import java .lang .annotation .Retention ;
7+ import java .lang .annotation .RetentionPolicy ;
8+
9+ @ Retention (RetentionPolicy .RUNTIME )
10+ public @interface Alias {
11+ public String Name () default "" ;
12+ }
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015 ServiceStack LLC. All rights reserved.
2+ // License: https://servicestack.net/bsd-license.txt
3+
4+ package net .servicestack .client ;
5+
6+ import java .lang .annotation .Retention ;
7+ import java .lang .annotation .RetentionPolicy ;
8+
9+ @ Retention (RetentionPolicy .RUNTIME )
10+ public @interface CheckConstraintAttribute {
11+ public String Constraint () default "" ;
12+ }
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015 ServiceStack LLC. All rights reserved.
2+ // License: https://servicestack.net/bsd-license.txt
3+
4+ package net .servicestack .client ;
5+
6+ import java .lang .annotation .Retention ;
7+ import java .lang .annotation .RetentionPolicy ;
8+
9+ @ Retention (RetentionPolicy .RUNTIME )
10+ public @interface Compute {
11+ public String Expression () default "" ;
12+ }
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015 ServiceStack LLC. All rights reserved.
2+ // License: https://servicestack.net/bsd-license.txt
3+
4+ package net .servicestack .client ;
5+
6+ import java .lang .annotation .Retention ;
7+ import java .lang .annotation .RetentionPolicy ;
8+
9+ @ Retention (RetentionPolicy .RUNTIME )
10+ public @interface ForeignKey {
11+
12+ public Class Type () default Object .class ;
13+ public String OnDelete () default "" ;
14+ public String OnUpdate () default "" ;
15+ public String ForeignKeyName () default "" ;
16+ }
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015 ServiceStack LLC. All rights reserved.
2+ // License: https://servicestack.net/bsd-license.txt
3+
4+ package net .servicestack .client ;
5+
6+ import java .lang .annotation .Retention ;
7+ import java .lang .annotation .RetentionPolicy ;
8+
9+ @ Retention (RetentionPolicy .RUNTIME )
10+ public @interface Index {
11+ public String Name () default "" ;
12+ public boolean Unique () default false ;
13+ public boolean Clustered () default false ;
14+ public boolean NonClustered () default false ;
15+ }
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015 ServiceStack LLC. All rights reserved.
2+ // License: https://servicestack.net/bsd-license.txt
3+
4+ package net .servicestack .client ;
5+
6+ import java .lang .annotation .Retention ;
7+ import java .lang .annotation .RetentionPolicy ;
8+
9+ @ Retention (RetentionPolicy .RUNTIME )
10+ public @interface NamedConnection {
11+ public String Name () default "" ;
12+ }
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015 ServiceStack LLC. All rights reserved.
2+ // License: https://servicestack.net/bsd-license.txt
3+
4+ package net .servicestack .client ;
5+
6+ import java .lang .annotation .Retention ;
7+ import java .lang .annotation .RetentionPolicy ;
8+
9+ @ Retention (RetentionPolicy .RUNTIME )
10+ public @interface Persisted {
11+ }
Original file line number Diff line number Diff line change 1+ // Copyright (c) 2015 ServiceStack LLC. All rights reserved.
2+ // License: https://servicestack.net/bsd-license.txt
3+
4+ package net .servicestack .client ;
5+
6+ import java .lang .annotation .Retention ;
7+ import java .lang .annotation .RetentionPolicy ;
8+
9+ @ Retention (RetentionPolicy .RUNTIME )
10+ public @interface Reference {
11+ }
You can’t perform that action at this time.
0 commit comments