Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit bb9d5b0

Browse files
author
SJAsus
committed
Updated to Apache License Version 2.0
1 parent f1feef9 commit bb9d5b0

18 files changed

+204
-154
lines changed

‎src/main/java/us/shalabh/alp/client/SimpleAWSLambdaSimulator.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* Copyright 2017 shalabh.us
33
*
4-
*
54
* Licensed under the Apache License, Version 2.0 (the "License");
65
* you may not use this file except in compliance with the License.
76
* You may obtain a copy of the License at

‎src/main/java/us/shalabh/alp/config/AppComponent.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
/**
2-
* Copyright 2017. All Rights Reserved.
2+
* Copyright 2017 shalabh.us
33
*
4-
* NOTICE: All information contained herein is, and remains
5-
* the property of shalabh.us. The intellectual and technical
6-
* concepts contained herein are proprietary to shalabh.us
7-
* and may be covered by U.S. and Foreign Patents,
8-
* patents in process, and are protected by trade secret or copyright law.
9-
* Dissemination of this information or reproduction of this material
10-
* is strictly forbidden unless prior written permission is obtained
11-
* from shalabh.us
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
1316
package us.shalabh.alp.config;
1417

‎src/main/java/us/shalabh/alp/config/AppModule.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
/**
2-
* Copyright 2017. All Rights Reserved.
2+
* Copyright 2017 shalabh.us
33
*
4-
* NOTICE: All information contained herein is, and remains
5-
* the property of shalabh.us. The intellectual and technical
6-
* concepts contained herein are proprietary to shalabh.us
7-
* and may be covered by U.S. and Foreign Patents,
8-
* patents in process, and are protected by trade secret or copyright law.
9-
* Dissemination of this information or reproduction of this material
10-
* is strictly forbidden unless prior written permission is obtained
11-
* from shalabh.us
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
1316
package us.shalabh.alp.config;
1417

‎src/main/java/us/shalabh/alp/dao/DemoHttpRequestDao.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
/**
2-
* Copyright 2017. All Rights Reserved.
2+
* Copyright 2017 shalabh.us
33
*
4-
* NOTICE: All information contained herein is, and remains
5-
* the property of shalabh.us. The intellectual and technical
6-
* concepts contained herein are proprietary to shalabh.us
7-
* and may be covered by U.S. and Foreign Patents,
8-
* patents in process, and are protected by trade secret or copyright law.
9-
* Dissemination of this information or reproduction of this material
10-
* is strictly forbidden unless prior written permission is obtained
11-
* from shalabh.us
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
1316
package us.shalabh.alp.dao;
1417

‎src/main/java/us/shalabh/alp/dao/DemoS3EventDao.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
/**
2-
* Copyright 2017. All Rights Reserved.
2+
* Copyright 2017 shalabh.us
33
*
4-
* NOTICE: All information contained herein is, and remains
5-
* the property of shalabh.us. The intellectual and technical
6-
* concepts contained herein are proprietary to shalabh.us
7-
* and may be covered by U.S. and Foreign Patents,
8-
* patents in process, and are protected by trade secret or copyright law.
9-
* Dissemination of this information or reproduction of this material
10-
* is strictly forbidden unless prior written permission is obtained
11-
* from shalabh.us
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
1316
package us.shalabh.alp.dao;
1417

‎src/main/java/us/shalabh/alp/dao/IDemoHttpRequestDao.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
/**
2-
* Copyright 2017. All Rights Reserved.
2+
* Copyright 2017 shalabh.us
33
*
4-
* NOTICE: All information contained herein is, and remains
5-
* the property of shalabh.us. The intellectual and technical
6-
* concepts contained herein are proprietary to shalabh.us
7-
* and may be covered by U.S. and Foreign Patents,
8-
* patents in process, and are protected by trade secret or copyright law.
9-
* Dissemination of this information or reproduction of this material
10-
* is strictly forbidden unless prior written permission is obtained
11-
* from shalabh.us
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
1316
package us.shalabh.alp.dao;
1417

‎src/main/java/us/shalabh/alp/dao/IDemoS3EventDao.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
/**
2-
* Copyright 2017. All Rights Reserved.
2+
* Copyright 2017 shalabh.us
33
*
4-
* NOTICE: All information contained herein is, and remains
5-
* the property of shalabh.us. The intellectual and technical
6-
* concepts contained herein are proprietary to shalabh.us
7-
* and may be covered by U.S. and Foreign Patents,
8-
* patents in process, and are protected by trade secret or copyright law.
9-
* Dissemination of this information or reproduction of this material
10-
* is strictly forbidden unless prior written permission is obtained
11-
* from shalabh.us
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
1316
package us.shalabh.alp.dao;
1417

‎src/main/java/us/shalabh/alp/exception/AccessDeniedException.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
/**
2-
* Copyright 2017. All Rights Reserved.
2+
* Copyright 2017 shalabh.us
33
*
4-
* NOTICE: All information contained herein is, and remains
5-
* the property of shalabh.us. The intellectual and technical
6-
* concepts contained herein are proprietary to shalabh.us
7-
* and may be covered by U.S. and Foreign Patents,
8-
* patents in process, and are protected by trade secret or copyright law.
9-
* Dissemination of this information or reproduction of this material
10-
* is strictly forbidden unless prior written permission is obtained
11-
* from shalabh.us
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
1316
package us.shalabh.alp.exception;
1417

‎src/main/java/us/shalabh/alp/function/BaseHandler.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
/**
2-
* Copyright 2017. All Rights Reserved.
2+
* Copyright 2017 shalabh.us
33
*
4-
* NOTICE: All information contained herein is, and remains
5-
* the property of shalabh.us. The intellectual and technical
6-
* concepts contained herein are proprietary to shalabh.us
7-
* and may be covered by U.S. and Foreign Patents,
8-
* patents in process, and are protected by trade secret or copyright law.
9-
* Dissemination of this information or reproduction of this material
10-
* is strictly forbidden unless prior written permission is obtained
11-
* from shalabh.us
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
1316
package us.shalabh.alp.function;
1417

‎src/main/java/us/shalabh/alp/function/DemoHttpRequestLambda.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
/**
2-
* Copyright 2017. All Rights Reserved.
2+
* Copyright 2017 shalabh.us
33
*
4-
* NOTICE: All information contained herein is, and remains
5-
* the property of shalabh.us. The intellectual and technical
6-
* concepts contained herein are proprietary to shalabh.us
7-
* and may be covered by U.S. and Foreign Patents,
8-
* patents in process, and are protected by trade secret or copyright law.
9-
* Dissemination of this information or reproduction of this material
10-
* is strictly forbidden unless prior written permission is obtained
11-
* from shalabh.us
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1215
*/
1316
package us.shalabh.alp.function;
1417

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /