-
Notifications
You must be signed in to change notification settings - Fork 617
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring and added issued date to oauth token
- Loading branch information
Showing
34 changed files
with
5,560 additions
and
5,393 deletions.
There are no files selected for viewing
10,562 changes: 5,282 additions & 5,280 deletions
10,562
BimServer/generated/org/bimserver/interfaces/SConverter.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
38 changes: 38 additions & 0 deletions
38
BimServer/src/org/bimserver/database/migrations/steps/Step0043.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,38 @@ | ||
package org.bimserver.database.migrations.steps; | ||
|
||
/****************************************************************************** | ||
* Copyright (C) 2009-2018 BIMserver.org | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see {@literal<http://www.gnu.org/licenses/>}. | ||
*****************************************************************************/ | ||
|
||
import org.bimserver.database.DatabaseSession; | ||
import org.bimserver.database.migrations.Migration; | ||
import org.bimserver.database.migrations.Schema; | ||
import org.eclipse.emf.ecore.EClass; | ||
import org.eclipse.emf.ecore.EcorePackage; | ||
|
||
public class Step0043 extends Migration { | ||
|
||
@Override | ||
public void migrate(Schema schema, DatabaseSession databaseSession) { | ||
EClass oauthCode = schema.getEClass("store", "OAuthAuthorizationCode"); | ||
schema.createEAttribute(oauthCode, "issued", EcorePackage.eINSTANCE.getEDate()); | ||
} | ||
|
||
@Override | ||
public String getDescription() { | ||
return "Added issued date"; | ||
} | ||
} |
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
...er/database/queries/DensityThreshold.java → ...ometry/accellerator/DensityThreshold.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
...database/queries/DensityThresholdKey.java → ...try/accellerator/DensityThresholdKey.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,4 +1,4 @@ | ||
package org.bimserver.database.queries; | ||
package org.bimserver.geometry.accellerator; | ||
|
||
import java.util.Set; | ||
|
||
|
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
...rver/database/queries/GeometryObject.java → ...geometry/accellerator/GeometryObject.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
5 changes: 4 additions & 1 deletion
5
.../org/bimserver/database/queries/Node.java → ...bimserver/geometry/accellerator/Node.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
4 changes: 3 additions & 1 deletion
4
...rg/bimserver/database/queries/Octree.java → ...mserver/geometry/accellerator/Octree.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
...bimserver/database/queries/OctreeKey.java → ...rver/geometry/accellerator/OctreeKey.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,4 +1,4 @@ | ||
package org.bimserver.database.queries; | ||
package org.bimserver.geometry.accellerator; | ||
|
||
import java.util.Set; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../bimserver/database/queries/ReuseKey.java → ...erver/geometry/accellerator/ReuseKey.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,4 +1,4 @@ | ||
package org.bimserver.database.queries; | ||
package org.bimserver.geometry.accellerator; | ||
|
||
import java.util.Set; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...mserver/database/queries/ReuseObject.java → ...er/geometry/accellerator/ReuseObject.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
.../bimserver/database/queries/ReuseSet.java → ...erver/geometry/accellerator/ReuseSet.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
...bimserver/database/queries/Traverser.java → ...rver/geometry/accellerator/Traverser.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
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,5 @@ | ||
package org.bimserver.servlets; | ||
|
||
public class BimBotsWebSocket { | ||
|
||
} |
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.