[java-identity-provider] branch main updated: Add missed files.
Scott Cantor
cantor.2 at osu.edu
Tue Sep 1 21:44:59 UTC 2020
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=c6974de30dfd9aa05f95fa24c172482af2027e6d
The following commit(s) were added to refs/heads/main by this push:
new c6974de30 Add missed files.
c6974de30 is described below
commit c6974de30dfd9aa05f95fa24c172482af2027e6d
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Sep 1 17:44:51 2020 -0400
Add missed files.
---
.../java/net/shibboleth/idp/module/BadModule.java | 37 ++++++++++++++++++++++
.../java/net/shibboleth/idp/module/BadModule2.java | 37 ++++++++++++++++++++++
2 files changed, 74 insertions(+)
diff --git a/idp-admin-api/src/test/java/net/shibboleth/idp/module/BadModule.java b/idp-admin-api/src/test/java/net/shibboleth/idp/module/BadModule.java
new file mode 100644
index 000000000..86fbaed5e
--- /dev/null
+++ b/idp-admin-api/src/test/java/net/shibboleth/idp/module/BadModule.java
@@ -0,0 +1,37 @@
+/*
+ * Licensed to the University Corporation for Advanced Internet Development,
+ * Inc. (UCAID) under one or more contributor license agreements. See the
+ * NOTICE file distributed with this work for additional information regarding
+ * copyright ownership. The UCAID licenses this file to You 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 net.shibboleth.idp.module;
+
+import java.io.IOException;
+
+/**
+ * Test {@IdPModule} implementation.
+ */
+public final class BadModule extends PropertyDrivenIdPModule {
+
+ /**
+ * Constructor.
+ *
+ * @throws ModuleException
+ * @throws IOException
+ */
+ public BadModule() throws IOException, ModuleException {
+ super(BadModule.class);
+ }
+
+}
\ No newline at end of file
diff --git a/idp-admin-api/src/test/java/net/shibboleth/idp/module/BadModule2.java b/idp-admin-api/src/test/java/net/shibboleth/idp/module/BadModule2.java
new file mode 100644
index 000000000..be43f8648
--- /dev/null
+++ b/idp-admin-api/src/test/java/net/shibboleth/idp/module/BadModule2.java
@@ -0,0 +1,37 @@
+/*
+ * Licensed to the University Corporation for Advanced Internet Development,
+ * Inc. (UCAID) under one or more contributor license agreements. See the
+ * NOTICE file distributed with this work for additional information regarding
+ * copyright ownership. The UCAID licenses this file to You 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 net.shibboleth.idp.module;
+
+import java.io.IOException;
+
+/**
+ * Test {@IdPModule} implementation.
+ */
+public final class BadModule2 extends PropertyDrivenIdPModule {
+
+ /**
+ * Constructor.
+ *
+ * @throws ModuleException
+ * @throws IOException
+ */
+ public BadModule2() throws IOException, ModuleException {
+ super(BadModule2.class);
+ }
+
+}
\ No newline at end of file
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list