-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from relogiclabs/develop
Add Scripting Functionalities
- Loading branch information
Showing
304 changed files
with
16,895 additions
and
6,233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...labs/json/schema/collection/IndexMap.java → ...ogiclabs/jschema/collection/IndexMap.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...clabs/json/schema/collection/Keyable.java → ...logiclabs/jschema/collection/Keyable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...xception/ClassInstantiationException.java → ...xception/ClassInstantiationException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package com.relogiclabs.json.schema.exception; | ||
package com.relogiclabs.jschema.exception; | ||
|
||
import com.relogiclabs.json.schema.message.ErrorDetail; | ||
import com.relogiclabs.jschema.message.ErrorDetail; | ||
|
||
public class ClassInstantiationException extends CommonException { | ||
public ClassInstantiationException(ErrorDetail detail, Throwable cause) { | ||
super(detail, cause); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ema/exception/DateTimeLexerException.java → ...ema/exception/DateTimeLexerException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package com.relogiclabs.json.schema.exception; | ||
package com.relogiclabs.jschema.exception; | ||
|
||
public class DateTimeLexerException extends CommonException { | ||
public DateTimeLexerException(String code, String message, Throwable cause) { | ||
super(code, message, cause); | ||
} | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...xception/DefinitionNotFoundException.java → ...xception/DefinitionNotFoundException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package com.relogiclabs.json.schema.exception; | ||
package com.relogiclabs.jschema.exception; | ||
|
||
import com.relogiclabs.json.schema.message.ErrorDetail; | ||
import com.relogiclabs.jschema.message.ErrorDetail; | ||
|
||
public class DefinitionNotFoundException extends CommonException { | ||
public DefinitionNotFoundException(ErrorDetail detail) { | ||
super(detail); | ||
} | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...ception/DuplicateDefinitionException.java → ...ception/DuplicateDefinitionException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package com.relogiclabs.json.schema.exception; | ||
package com.relogiclabs.jschema.exception; | ||
|
||
import com.relogiclabs.json.schema.message.ErrorDetail; | ||
import com.relogiclabs.jschema.message.ErrorDetail; | ||
|
||
public class DuplicateDefinitionException extends CommonException { | ||
public DuplicateDefinitionException(ErrorDetail detail) { | ||
super(detail); | ||
} | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/relogiclabs/jschema/exception/DuplicateImportException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.relogiclabs.jschema.exception; | ||
|
||
import com.relogiclabs.jschema.message.ErrorDetail; | ||
|
||
public class DuplicateImportException extends CommonException { | ||
public DuplicateImportException(ErrorDetail detail) { | ||
super(detail); | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...a/exception/DuplicatePragmaException.java → ...a/exception/DuplicatePragmaException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package com.relogiclabs.json.schema.exception; | ||
package com.relogiclabs.jschema.exception; | ||
|
||
import com.relogiclabs.json.schema.message.ErrorDetail; | ||
import com.relogiclabs.jschema.message.ErrorDetail; | ||
|
||
public class DuplicatePragmaException extends CommonException { | ||
public DuplicatePragmaException(ErrorDetail detail) { | ||
super(detail); | ||
} | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...eption/DuplicatePropertyKeyException.java → ...eption/DuplicatePropertyKeyException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package com.relogiclabs.json.schema.exception; | ||
package com.relogiclabs.jschema.exception; | ||
|
||
import com.relogiclabs.json.schema.message.ErrorDetail; | ||
import com.relogiclabs.jschema.message.ErrorDetail; | ||
|
||
public class DuplicatePropertyKeyException extends CommonException { | ||
public DuplicatePropertyKeyException(ErrorDetail detail) { | ||
super(detail); | ||
} | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
.../exception/FunctionNotFoundException.java → .../exception/FunctionNotFoundException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package com.relogiclabs.json.schema.exception; | ||
package com.relogiclabs.jschema.exception; | ||
|
||
import com.relogiclabs.json.schema.message.ErrorDetail; | ||
import com.relogiclabs.jschema.message.ErrorDetail; | ||
|
||
public class FunctionNotFoundException extends CommonException { | ||
public FunctionNotFoundException(ErrorDetail detail) { | ||
super(detail); | ||
} | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...a/exception/InvalidDataTypeException.java → ...a/exception/InvalidDataTypeException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package com.relogiclabs.json.schema.exception; | ||
package com.relogiclabs.jschema.exception; | ||
|
||
import com.relogiclabs.json.schema.message.ErrorDetail; | ||
import com.relogiclabs.jschema.message.ErrorDetail; | ||
|
||
public class InvalidDataTypeException extends CommonException { | ||
public InvalidDataTypeException(ErrorDetail detail) { | ||
super(detail); | ||
} | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
...a/exception/InvalidDateTimeException.java → ...a/exception/InvalidDateTimeException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package com.relogiclabs.json.schema.exception; | ||
package com.relogiclabs.jschema.exception; | ||
|
||
public class InvalidDateTimeException extends CommonException { | ||
public InvalidDateTimeException(String code, String message) { | ||
super(code, message); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/main/java/com/relogiclabs/jschema/exception/InvalidImportException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.relogiclabs.jschema.exception; | ||
|
||
import com.relogiclabs.jschema.message.ErrorDetail; | ||
|
||
public class InvalidImportException extends CommonException { | ||
public InvalidImportException(ErrorDetail detail) { | ||
super(detail); | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...xception/InvalidPragmaValueException.java → ...xception/InvalidPragmaValueException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package com.relogiclabs.json.schema.exception; | ||
package com.relogiclabs.jschema.exception; | ||
|
||
import com.relogiclabs.json.schema.message.ErrorDetail; | ||
import com.relogiclabs.jschema.message.ErrorDetail; | ||
|
||
public class InvalidPragmaValueException extends CommonException { | ||
public InvalidPragmaValueException(ErrorDetail detail) { | ||
super(detail); | ||
} | ||
} | ||
} |
Oops, something went wrong.