forked from grails/grails-core
-
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.
Refactor 'org.codehaus' -> 'org.grails' for 'grails-core'
- Loading branch information
graemerocher
authored and
graemerocher
committed
Jun 19, 2014
1 parent
b3c7b62
commit 5840984
Showing
209 changed files
with
557 additions
and
2,330 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
50 changes: 24 additions & 26 deletions
50
...s/commons/metaclass/FunctionCallback.java → ...commons/DomainClassArtefactHandler.groovy
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,26 +1,24 @@ | ||
/* | ||
* Copyright 2004-2005 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.codehaus.groovy.grails.commons.metaclass; | ||
|
||
/** | ||
* <p>Interface for code that returns a value based on an input object.</p> | ||
* | ||
* @author Marc Palmer (marc@anyware.co.uk) | ||
*/ | ||
public interface FunctionCallback { | ||
|
||
Object execute(Object object); | ||
} | ||
/* | ||
* Copyright 2004-2005 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.codehaus.groovy.grails.commons | ||
|
||
/** | ||
* @author Graeme Rocher | ||
* @deprecated Use {@link org.grails.core.DomainClassArtefactHandler} instead | ||
*/ | ||
@Deprecated | ||
class DomainClassArtefactHandler extends org.grails.core.DomainClassArtefactHandler { | ||
} |
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
24 changes: 24 additions & 0 deletions
24
...ls-compatibility/src/main/groovy/org/codehaus/groovy/grails/commons/GrailsArrayUtils.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,24 @@ | ||
/* | ||
* Copyright 2012 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.codehaus.groovy.grails.commons; | ||
|
||
/** | ||
* @author Graeme Rocher | ||
* @deprecated Use {@link grails.util.GrailsArrayUtils} instead | ||
*/ | ||
@Deprecated | ||
public class GrailsArrayUtils extends grails.util.GrailsArrayUtils { | ||
} |
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
24 changes: 24 additions & 0 deletions
24
...patibility/src/main/groovy/org/codehaus/groovy/grails/commons/GrailsMetaClassUtils.groovy
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,24 @@ | ||
/* | ||
* Copyright 2004-2005 Graeme Rocher | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.codehaus.groovy.grails.commons | ||
|
||
/** | ||
* @author Graeme Rocher | ||
* @deprecated Use {@link grails.util.GrailsMetaClassUtils} instead | ||
*/ | ||
@Deprecated | ||
class GrailsMetaClassUtils extends grails.util.GrailsMetaClassUtils { | ||
} |
24 changes: 24 additions & 0 deletions
24
...s-compatibility/src/main/groovy/org/codehaus/groovy/grails/commons/GrailsStringUtils.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,24 @@ | ||
/* | ||
* Copyright 2012 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.codehaus.groovy.grails.commons; | ||
|
||
/** | ||
* @author Graeme Rocher | ||
* @deprecated Use {@link grails.util.GrailsStringUtils} instead | ||
*/ | ||
@Deprecated | ||
public class GrailsStringUtils extends grails.util.GrailsStringUtils { | ||
} |
17 changes: 17 additions & 0 deletions
17
...-compatibility/src/main/groovy/org/codehaus/groovy/grails/commons/cfg/GrailsConfig.groovy
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,17 @@ | ||
package org.codehaus.groovy.grails.commons.cfg | ||
|
||
import grails.core.GrailsApplication | ||
import groovy.transform.CompileStatic | ||
|
||
/** | ||
* @author Graeme Rocher | ||
* @deprecated Use {@link grails.config.GrailsConfig} instead | ||
*/ | ||
@CompileStatic | ||
@Deprecated | ||
class GrailsConfig extends grails.config.GrailsConfig{ | ||
GrailsConfig(GrailsApplication grailsApplication) { | ||
super(grailsApplication) | ||
} | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
...ility/src/main/groovy/org/codehaus/groovy/grails/commons/metaclass/MetaClassEnhancer.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,10 @@ | ||
package org.codehaus.groovy.grails.commons.metaclass; | ||
|
||
/** | ||
* @author Graeme Rocher | ||
* | ||
* @deprecated Use {@link org.grails.core.metaclass.MetaClassEnhancer} instead | ||
*/ | ||
@Deprecated | ||
public class MetaClassEnhancer extends org.grails.core.metaclass.MetaClassEnhancer { | ||
} |
8 changes: 8 additions & 0 deletions
8
.../src/main/groovy/org/codehaus/groovy/grails/plugins/support/aware/ClassLoaderAware.groovy
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,8 @@ | ||
package org.codehaus.groovy.grails.plugins.support.aware | ||
|
||
/** | ||
* @deprecated Use {@link grails.core.support.ClassLoaderAware} instead | ||
*/ | ||
@Deprecated | ||
public interface ClassLoaderAware extends grails.core.support.ClassLoaderAware{ | ||
} |
10 changes: 10 additions & 0 deletions
10
...ain/groovy/org/codehaus/groovy/grails/plugins/support/aware/GrailsApplicationAware.groovy
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,10 @@ | ||
package org.codehaus.groovy.grails.plugins.support.aware | ||
|
||
/** | ||
* | ||
* @author Graeme Rocher | ||
* @deprecated Use {@link grails.core.support.GrailsApplicationAware} instead | ||
*/ | ||
@Deprecated | ||
public interface GrailsApplicationAware extends grails.core.support.GrailsApplicationAware { | ||
} |
8 changes: 8 additions & 0 deletions
8
...n/groovy/org/codehaus/groovy/grails/plugins/support/aware/GrailsConfigurationAware.groovy
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,8 @@ | ||
package org.codehaus.groovy.grails.plugins.support.aware | ||
|
||
/** | ||
* @deprecated Use {@link grails.core.support.GrailsConfigurationAware} instead | ||
*/ | ||
@Deprecated | ||
public interface GrailsConfigurationAware extends grails.core.support.GrailsConfigurationAware{ | ||
} |
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
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
Oops, something went wrong.