Skip to content

Commit

Permalink
Use .gitattributes to enforce LF line endings which reduces merge and…
Browse files Browse the repository at this point in the history
… rebase effort
  • Loading branch information
krichter722 committed Aug 6, 2021
1 parent 8c86633 commit 6e75fe1
Show file tree
Hide file tree
Showing 89 changed files with 31,626 additions and 31,625 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
2 changes: 1 addition & 1 deletion client/src/main/resources/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Manifest-Version: 1.0
Manifest-Version: 1.0
Class-Path: orient-database-enterprise.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
* *
* * 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.
* *
* * For more information: http://orientdb.com
*
*/
package com.orientechnologies.orient.core.command;

public interface OCommandRequestAsynch {
public OCommandResultListener getResultListener();

public void setResultListener(OCommandResultListener iListener);

public boolean isAsynchronous();
}
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
* *
* * 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.
* *
* * For more information: http://orientdb.com
*
*/
package com.orientechnologies.orient.core.command;

public interface OCommandRequestAsynch {
public OCommandResultListener getResultListener();

public void setResultListener(OCommandResultListener iListener);

public boolean isAsynchronous();
}
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
* *
* * 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.
* *
* * For more information: http://orientdb.com
*
*/
package com.orientechnologies.orient.core.config;

/**
* Interface of actions to call in case of change of the configuration.
*
* @author Luca Garulli (l.garulli--(at)--orientdb.com)
*/
public interface OConfigurationChangeCallback {
void change(final Object iCurrentValue, final Object iNewValue);
}
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
* *
* * 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.
* *
* * For more information: http://orientdb.com
*
*/
package com.orientechnologies.orient.core.config;

/**
* Interface of actions to call in case of change of the configuration.
*
* @author Luca Garulli (l.garulli--(at)--orientdb.com)
*/
public interface OConfigurationChangeCallback {
void change(final Object iCurrentValue, final Object iNewValue);
}
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
* *
* * 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.
* *
* * For more information: http://orientdb.com
*
*/
package com.orientechnologies.orient.core.db.record;

/**
* Objects of this class can be detached.
*
* @author Luca Garulli (l.garulli--(at)--orientdb.com)
*/
public interface ODetachable {
/**
* Detaches the object.
*
* @return true if the object has been fully detached, otherwise false
*/
boolean detach();
}
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
* *
* * 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.
* *
* * For more information: http://orientdb.com
*
*/
package com.orientechnologies.orient.core.db.record;

/**
* Objects of this class can be detached.
*
* @author Luca Garulli (l.garulli--(at)--orientdb.com)
*/
public interface ODetachable {
/**
* Detaches the object.
*
* @return true if the object has been fully detached, otherwise false
*/
boolean detach();
}
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
* *
* * 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.
* *
* * For more information: http://orientdb.com
*
*/

package com.orientechnologies.orient.core.db.tool;

@SuppressWarnings("serial")
public class ODatabaseExportException extends RuntimeException {

public ODatabaseExportException() {
super();
}

public ODatabaseExportException(String message, Throwable cause) {
super(message, cause);
}

public ODatabaseExportException(String message) {
super(message);
}

public ODatabaseExportException(Throwable cause) {
super(cause);
}
}
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
* *
* * 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.
* *
* * For more information: http://orientdb.com
*
*/

package com.orientechnologies.orient.core.db.tool;

@SuppressWarnings("serial")
public class ODatabaseExportException extends RuntimeException {

public ODatabaseExportException() {
super();
}

public ODatabaseExportException(String message, Throwable cause) {
super(message, cause);
}

public ODatabaseExportException(String message) {
super(message);
}

public ODatabaseExportException(Throwable cause) {
super(cause);
}
}
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
* *
* * 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.
* *
* * For more information: http://orientdb.com
*
*/
package com.orientechnologies.orient.core.exception;

public class OConfigurationException extends OCoreException {

private static final long serialVersionUID = -8486291378415776372L;

public OConfigurationException(OConfigurationException exception) {
super(exception);
}

public OConfigurationException(String message) {
super(message);
}
}
/*
*
* * Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
* *
* * 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.
* *
* * For more information: http://orientdb.com
*
*/
package com.orientechnologies.orient.core.exception;

public class OConfigurationException extends OCoreException {

private static final long serialVersionUID = -8486291378415776372L;

public OConfigurationException(OConfigurationException exception) {
super(exception);
}

public OConfigurationException(String message) {
super(message);
}
}
Loading

0 comments on commit 6e75fe1

Please sign in to comment.