diff --git a/README.md b/README.md index b74bdc4e..4e952f14 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ -# Apex Dynamic SOQL & SOSL Library +# Nebula Query & Search A lightweight Apex library for easily building dynamic SOQL queries & SOSL searches

+[![Travis CI](https://img.shields.io/travis/jongpie/NebulaLogger/master.svg)](https://travis-ci.org/jongpie/NebulaLogger) + Deploy to Salesforce diff --git a/src/classes/Soql.cls b/src/classes/Soql.cls index 0a6d8d13..2848d06c 100644 --- a/src/classes/Soql.cls +++ b/src/classes/Soql.cls @@ -1,3 +1,7 @@ +/****************************************************************************************************** +* This file is part of the Nebula Framework project, released under the MIT License. * +* See LICENSE file or go to https://github.com/jongpie/NebulaQueryAndSearch for full license details. * +******************************************************************************************************/ public class Soql implements Comparable { public enum Aggregate { AVG, COUNT, COUNT_DISTINCT, MAX, MIN, SUM } diff --git a/src/classes/Soql_Tests.cls b/src/classes/Soql_Tests.cls index 509100e3..f92fc4dc 100644 --- a/src/classes/Soql_Tests.cls +++ b/src/classes/Soql_Tests.cls @@ -1,3 +1,7 @@ +/****************************************************************************************************** +* This file is part of the Nebula Framework project, released under the MIT License. * +* See LICENSE file or go to https://github.com/jongpie/NebulaQueryAndSearch for full license details. * +******************************************************************************************************/ @isTest private class Soql_Tests { diff --git a/src/classes/Sosl.cls b/src/classes/Sosl.cls index 4ad64080..a2fd8538 100644 --- a/src/classes/Sosl.cls +++ b/src/classes/Sosl.cls @@ -1,3 +1,7 @@ +/****************************************************************************************************** +* This file is part of the Nebula Framework project, released under the MIT License. * +* See LICENSE file or go to https://github.com/jongpie/NebulaQueryAndSearch for full license details. * +******************************************************************************************************/ public class Sosl { public enum ArticleReporting { TRACKING, VIEWSTAT } diff --git a/src/classes/Sosl_Tests.cls b/src/classes/Sosl_Tests.cls index bf472880..646a4ebd 100644 --- a/src/classes/Sosl_Tests.cls +++ b/src/classes/Sosl_Tests.cls @@ -1,3 +1,7 @@ +/****************************************************************************************************** +* This file is part of the Nebula Framework project, released under the MIT License. * +* See LICENSE file or go to https://github.com/jongpie/NebulaQueryAndSearch for full license details. * +******************************************************************************************************/ @isTest private class Sosl_Tests {